runlevel 374 B

123456789101112131415
  1. #!/bin/sh --
  2. set -ue
  3. ### This script is called once at boot time by rc.init, and is
  4. ### also called by the runleveld service every time the user
  5. ### requests a machine state change via telinit.
  6. ### Ideally, it should just be a call to the service manager.
  7. [ "${#}" -gt 0 ] || {
  8. echo "${0##*/}: fatal: too few arguments" 1>&2
  9. exit 100
  10. }
  11. exec s6-rc -v2 -up change "${1}"