From bc6ca7944f5c8186760d68d957f1da2e763f7a16 Mon Sep 17 00:00:00 2001 From: Joachim Schiele Date: Sat, 31 Mar 2012 11:39:30 +0000 Subject: [PATCH] fixed a upstart issue where upsd was never started svn path=/nixos/trunk/; revision=33494 --- modules/services/monitoring/ups.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/monitoring/ups.nix b/modules/services/monitoring/ups.nix index 2874bbf20875..eedd69ac1918 100644 --- a/modules/services/monitoring/ups.nix +++ b/modules/services/monitoring/ups.nix @@ -191,7 +191,7 @@ in jobs.upsd = { description = "Uninterruptible Power Supplies (Daemon)"; - startOn = "started network-interfaces and upsmon"; + startOn = "started network-interfaces and started upsmon"; daemonType = "fork"; # TODO: replace 'root' by another username. exec = ''${pkgs.nut}/sbin/upsd -u root'';