This commit is contained in:
2018-06-07 10:51:29 -04:00
parent 9225678fd4
commit 653e69d929

View File

@@ -2,6 +2,12 @@
# installs the zabbix agent and configures it
# make sure we are running as sudo
if [ "$EUID" -ne 0 ]; then
echo "Please run as root"
exit
fi
# create temp directory for downloaded files
DIRECTORY="/tmp/zabbix_install"
mkdir ${DIRECTORY}