summaryrefslogtreecommitdiff
path: root/skel/runlevel
blob: 6368b4bee87ffb9585e23028a9c28281aef97223 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e

### This script is called once at boot time by rc.init, and is
### also called by the runleveld service every time the user
### requests a machine state change via telinit.
### Ideally, it should just be a call to the service manager.

### If your services are managed by sysv-rc:
# exec /etc/init.d/rc "$1"

### If your services are managed by OpenRC:
# exec /sbin/openrc "$1"

### If your services are managed by s6-rc:
# exec s6-rc -v2 change "$1"