diff options
Diffstat (limited to 'init/start-ttys.conf')
-rw-r--r-- | init/start-ttys.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/init/start-ttys.conf b/init/start-ttys.conf new file mode 100644 index 00000000..1528cf4b --- /dev/null +++ b/init/start-ttys.conf @@ -0,0 +1,15 @@ +# +# This service starts the configured number of gettys. + +start on stopped rc RUNLEVEL=[2345] + +env ACTIVE_CONSOLES=/dev/tty[1-6] +env X_TTY=/dev/tty1 +task +script + . /etc/sysconfig/init + for tty in $(echo $ACTIVE_CONSOLES) ; do + [ "$RUNLEVEL" = "5" -a "$tty" = "$X_TTY" ] && continue + initctl start tty TTY=$tty + done +end script |