aboutsummaryrefslogtreecommitdiff
path: root/core/sinit/files/sinit-launch-services.boot
blob: 4d4fad6adeef613fbeb0e6d4afa305a1d1d54514 (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
		ubase-box respawn /sbin/getty 38400 tty${getty} 2>&1 &
	done
}

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

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