* 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:
parent
17213c4f2a
commit
c8fc492acf
1 changed files with 4 additions and 2 deletions
|
@ -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";
|
||||
};
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue