123456789101112131415 |
- #!/bin/sh --
- set -ue
- ### 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.
- [ "${#}" -gt 0 ] || {
- echo "${0##*/}: fatal: too few arguments" 1>&2
- exit 100
- }
- exec s6-rc -v2 -up change "${1}"
|