423ba10303
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
15 lines
314 B
Bash
15 lines
314 B
Bash
#!/bin/sh
|
|
# Nico Schottelius
|
|
# cinit: add shutdown/reboot/poweroff service
|
|
|
|
set -e
|
|
|
|
# init variables
|
|
. $(dirname $0)/cinit.read-conf
|
|
|
|
BASEDIR=$DESTDIR/$CINIT_DIR
|
|
|
|
# create halt, link reboot and poweroff to it
|
|
mkdir "$BASEDIR/$C_HALT"
|
|
ln -s "$C_HALT" "$BASEDIR/$C_REBOOT"
|
|
ln -s "$C_HALT" "$BASEDIR/$C_POWEROFF"
|