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