This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Simple script for quickly installing and setting up a Zabbix stack. | |
# This includes database, snmptraps, server and web interface. | |
# A local agent can be installed optionally. | |
read -p "Zabbix version (default 'ubuntu-6.4-latest'): " version | |
if [ -z "${version}" ]; then | |
echo "Using default Zabbix version" | |
export ZSTACK_VERSION="ubuntu-6.4-latest" |