* Start atd when udev has finished completely. Hopefully this fixes

the random atd failures at boot time, which seem to be caused by a
  race with the creation of /dev/null or something.

svn path=/nixos/trunk/; revision=24077
This commit is contained in:
Eelco Dolstra 2010-10-05 14:22:06 +00:00
parent 17213c4f2a
commit c8fc492acf

View file

@ -66,7 +66,7 @@ in
jobs.atd =
{ description = "at daemon (atd)";
startOn = "started udev";
startOn = "stopped udevtrigger";
preStart =
''
@ -99,7 +99,9 @@ in
fi
'';
exec = "${at}/sbin/atd -f";
exec = "${at}/sbin/atd";
daemonType = "fork";
};
};