21 lines
220 B
Plaintext
21 lines
220 B
Plaintext
|
#!/bin/sh
|
||
|
PREREQ=""
|
||
|
prereqs()
|
||
|
{
|
||
|
echo "$PREREQ"
|
||
|
}
|
||
|
|
||
|
case $1 in
|
||
|
prereqs)
|
||
|
prereqs
|
||
|
exit 0
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
. /scripts/functions
|
||
|
|
||
|
log_begin_msg "Stopping yggdrasil"
|
||
|
PID=$(cat /run/yggdrasil.pid 2> /dev/null)
|
||
|
kill $PID
|
||
|
log_end_msg
|