* Start mingetty after udev, otherwise /dev/tty* may not exist yet

(and you get Upstart messages about the ttyN job being restarted).

svn path=/nixos/trunk/; revision=13931
This commit is contained in:
Eelco Dolstra 2009-02-01 19:51:53 +00:00
parent d641e99375
commit d98f482739

View file

@ -3,7 +3,7 @@
{
name = "tty" + toString ttyNumber;
job = "
start on startup
start on udev
stop on shutdown
respawn ${mingetty}/sbin/mingetty --loginprog=${loginProgram} --noclear tty${toString ttyNumber}
";