aboutsummaryrefslogtreecommitdiffstats
path: root/init/start-ttys.conf
blob: 1528cf4ba0f19dff9b330eb1989b262b045fda99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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