2015-07-20 00:09:47 -07: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
|
|
|
|
|
|
2015-07-24 01:42:28 -07:00
|
|
|
if [[ "${BOX_ENV}" == "cloudron" ]]; then
|
2016-05-10 09:51:04 -07:00
|
|
|
for i in {1..10}; do
|
|
|
|
|
if systemctl is-active collectd.service; then
|
|
|
|
|
systemctl restart collectd
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "Collectd is not active. Maybe some other apptask is restarting it"
|
|
|
|
|
sleep 6
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
echo "collectd not running"
|
|
|
|
|
exit 1
|
2015-07-20 00:09:47 -07:00
|
|
|
fi
|
|
|
|
|
|