2014-06-18 09:53:54 +02:00
|
|
|
#!/usr/bin/env bash
|
2014-09-08 10:03:37 +02:00
|
|
|
set -o errexit -o nounset
|
2015-03-15 11:29:48 +01:00
|
|
|
TOP_DIR=$(cd "$(dirname "$0")/.." && pwd)
|
2014-06-18 09:53:54 +02:00
|
|
|
source "$TOP_DIR/config/paths"
|
|
|
|
source "$LIB_DIR/functions.guest"
|
|
|
|
|
|
|
|
indicate_current_auto
|
|
|
|
|
|
|
|
exec_logfile
|
|
|
|
|
|
|
|
echo "Shutting down"
|
|
|
|
|
|
|
|
# Shutdown some time after returning so our caller has time to finish
|
|
|
|
sudo -b sh -c 'sleep 2; /sbin/shutdown -P now'
|