mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Disnix now also waits for the services it supports before it starts the Disnix daemon itself
svn path=/nixos/trunk/; revision=25626
This commit is contained in:
parent
96b769c979
commit
66ead80026
1 changed files with 5 additions and 1 deletions
|
@ -107,7 +107,11 @@ in
|
|||
disnix =
|
||||
{ description = "Disnix server";
|
||||
|
||||
startOn = "started dbus";
|
||||
startOn = "started dbus"
|
||||
+ optionalString config.services.httpd.enable " and started httpd"
|
||||
+ optionalString config.services.mysql.enable " and started mysql"
|
||||
+ optionalString config.services.tomcat.enable " and started tomcat"
|
||||
+ optionalString config.services.svnserve.enable " and started svnserve";
|
||||
|
||||
script =
|
||||
''
|
||||
|
|
Loading…
Reference in a new issue