Files
cloudron-box/src/scripts/restart.sh
Girish Ramakrishnan ee3d1b3697 remove unused var
2022-01-27 09:16:46 -08:00

19 lines
283 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
systemctl restart box
fi