Files
cloudron-box/src/scripts/setldapallowlist.sh
T

18 lines
285 B
Bash
Raw Normal View History

2021-12-10 16:20:58 +01:00
#!/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
[[ "${BOX_ENV}" == "test" ]] && exit
systemctl restart cloudron-firewall