* zabbix-server: don't require PostgreSQL to be started
if we're using a remote server. svn path=/nixos/trunk/; revision=31852
This commit is contained in:
parent
fa344f60d9
commit
b11a33717f
|
@ -76,8 +76,8 @@ in
|
||||||
|
|
||||||
description = "Zabbix server daemon";
|
description = "Zabbix server daemon";
|
||||||
|
|
||||||
startOn = "started postgresql";
|
startOn = if cfg.dbServer == "localhost" then "started postgresql" else "filesystem";
|
||||||
stopOn = "stopping postgresql";
|
stopOn = if cfg.dbServer == "localhost" then "stopping postgresql" else "starting shutdown";
|
||||||
|
|
||||||
preStart =
|
preStart =
|
||||||
''
|
''
|
||||||
|
|
Loading…
Reference in New Issue