blob: 2e4cb44f08eff0543a02eb65db8d0d4c04b93dc6 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# example script in stage 3 using openrc, sys-apps/openrc must be installed
test -x /etc/runit/reboot && LAST=6 || LAST=0
test -x /etc/runit/reboot && RC=reboot || RC=shutdown
RUNLEVEL=$LAST /sbin/openrc $RC
|