Files
cloudron-box/src/scripts/reboot.sh
Girish Ramakrishnan 98773160d0 sync before reboot
2016-10-03 17:43:22 -07:00

20 lines
286 B
Bash
Executable File

#!/bin/bash
set -eu -o pipefail
if [[ ${EUID} -ne 0 ]]; then
echo "This script should be run as root." > /dev/stderr
exit 1
fi
if [[ $# == 1 && "$1" == "--check" ]]; then
echo "OK"
exit 0
fi
if [[ "${BOX_ENV}" == "cloudron" ]]; then
sync
shutdown -r now
fi