Add unbound service

This commit is contained in:
Girish Ramakrishnan
2018-12-02 19:38:21 -08:00
parent 6d128595e7
commit 7c1ef143f9
4 changed files with 44 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/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
unbound-anchor -a /var/lib/unbound/root.key
systemctl restart unbound
fi