aboutsummaryrefslogtreecommitdiff
path: root/core/sinit/files/sinit-launch-services.boot
blob: 4cbb0570313bbf1576c163a4baf304003a1ba91d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# we are going to start runit and getty here

sinit_run_getty() {
	for getty in 1 2 3 4 5 6; do
		respawn /sbin/getty 38400 tty${getty} 2>&1 &
	done
}

sinit_runit() {
	respawn /usr/bin/runsvdir -P /var/service &
}

[ "$SINIT_ENABLE_GETTY" = 1 ] && sinit_run_getty
[ "$SINIT_ENABLE_RUNIT" = 1 ] && sinit_runit