forked from mirrors/nixpkgs
update obsolete startOn values
This commit is contained in:
parent
9f5c6d57cb
commit
599394162c
|
@ -56,14 +56,13 @@ with lib;
|
|||
{ name = endpointUser;
|
||||
uid = config.ids.uids.fourstorehttp;
|
||||
description = "4Store SPARQL endpoint user";
|
||||
# home = stateDir;
|
||||
};
|
||||
|
||||
services.avahi.enable = true;
|
||||
|
||||
jobs.fourStoreEndpoint = {
|
||||
name = "4store-endpoint";
|
||||
startOn = "filesystem";
|
||||
startOn = "ip-up";
|
||||
|
||||
exec = ''
|
||||
${run} '${pkgs.rdf4store}/bin/4s-httpd -D ${cfg.options} ${if cfg.listenAddress!=null then "-H ${cfg.listenAddress}" else "" } -p ${toString cfg.port} ${cfg.database}'
|
||||
|
|
|
@ -54,7 +54,7 @@ with lib;
|
|||
|
||||
jobs.fourStore = {
|
||||
name = "4store";
|
||||
startOn = "filesystem";
|
||||
startOn = "ip-up";
|
||||
|
||||
preStart = ''
|
||||
mkdir -p ${stateDir}/
|
||||
|
|
|
@ -63,7 +63,7 @@ with lib;
|
|||
|
||||
jobs.virtuoso = {
|
||||
name = "virtuoso";
|
||||
startOn = "filesystem";
|
||||
startOn = "ip-up";
|
||||
|
||||
preStart = ''
|
||||
mkdir -p ${stateDir}
|
||||
|
|
Loading…
Reference in a new issue