From 09bcf1418cbfa8e203fc36f98cbb8a39a5d08516 Mon Sep 17 00:00:00 2001 From: Nicolas Pierron Date: Sun, 22 Feb 2009 16:07:56 +0000 Subject: [PATCH] * 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/branches/fix-style/; revision=14174 --- upstart-jobs/mingetty.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upstart-jobs/mingetty.nix b/upstart-jobs/mingetty.nix index 1d821e789b76..8f50ea5c9db2 100644 --- a/upstart-jobs/mingetty.nix +++ b/upstart-jobs/mingetty.nix @@ -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} ";