From abbc2f4f2be6846b6492b3c575c0eac7a05113b5 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 9 Jul 2010 12:35:06 +0000 Subject: [PATCH] * Make acpid depend on syslogd (to prevent it printing startup messages to the console). svn path=/nixos/trunk/; revision=22545 --- modules/services/hardware/acpid.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/hardware/acpid.nix b/modules/services/hardware/acpid.nix index a846f3b7117..4be882c1f1e 100644 --- a/modules/services/hardware/acpid.nix +++ b/modules/services/hardware/acpid.nix @@ -97,7 +97,7 @@ in jobs.acpid = { description = "ACPI daemon"; - startOn = "started udev"; + startOn = "stopped udevtrigger and started syslogd"; exec = "${pkgs.acpid}/sbin/acpid --foreground --confdir ${acpiConfDir}"; };