mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-01-10 19:05:09 +00:00
a2ae582992
* Improve Zabbix Update / Agent2 * Add Updateble / Documentation / Info for JSON * Zabbix-Install: Switch to latest version & use zabbix-agent2 * Update json/zabbix.json Co-authored-by: Håvard Gjøby Thom <34199185+havardthom@users.noreply.github.com> * Update zabbix.sh --------- Co-authored-by: Håvard Gjøby Thom <34199185+havardthom@users.noreply.github.com>
96 lines
2.3 KiB
Bash
96 lines
2.3 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
# Copyright (c) 2021-2024 tteck
|
|
# Author: tteck (tteckster)
|
|
# License: MIT
|
|
# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
|
|
function header_info {
|
|
clear
|
|
cat <<"EOF"
|
|
_____ __ __ _
|
|
/__ / ____ _/ /_ / /_ (_) __
|
|
/ / / __ `/ __ \/ __ \/ / |/_/
|
|
/ /__/ /_/ / /_/ / /_/ / /> <
|
|
/____/\__,_/_.___/_.___/_/_/|_|
|
|
|
|
EOF
|
|
}
|
|
header_info
|
|
echo -e "Loading..."
|
|
APP="Zabbix"
|
|
var_disk="6"
|
|
var_cpu="2"
|
|
var_ram="4096"
|
|
var_os="debian"
|
|
var_version="12"
|
|
variables
|
|
color
|
|
catch_errors
|
|
|
|
function default_settings() {
|
|
CT_TYPE="1"
|
|
PW=""
|
|
CT_ID=$NEXTID
|
|
HN=$NSAPP
|
|
DISK_SIZE="$var_disk"
|
|
CORE_COUNT="$var_cpu"
|
|
RAM_SIZE="$var_ram"
|
|
BRG="vmbr0"
|
|
NET="dhcp"
|
|
GATE=""
|
|
APT_CACHER=""
|
|
APT_CACHER_IP=""
|
|
DISABLEIP6="no"
|
|
MTU=""
|
|
SD=""
|
|
NS=""
|
|
MAC=""
|
|
VLAN=""
|
|
SSH="no"
|
|
VERB="no"
|
|
echo_default
|
|
}
|
|
|
|
function update_script() {
|
|
header_info
|
|
check_container_storage
|
|
check_container_resources
|
|
if [[ ! -f /etc/zabbix/zabbix_server.conf ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
|
|
msg_info "Stopping ${APP} Services"
|
|
systemctl stop zabbix-server zabbix-agent2
|
|
msg_ok "Stopped ${APP} Services"
|
|
|
|
msg_info "Updating $APP LXC"
|
|
mkdir -p /opt/zabbix-backup/
|
|
cp /etc/zabbix/zabbix_server.conf /opt/zabbix-backup/
|
|
cp /etc/apache2/conf-enabled/zabbix.conf /opt/zabbix-backup/
|
|
cp -R /usr/share/zabbix/ /opt/zabbix-backup/
|
|
cp -R /usr/share/zabbix-* /opt/zabbix-backup/
|
|
rm -Rf /etc/apt/sources.list.d/zabbix.list
|
|
cd /tmp
|
|
wget -q https://repo.zabbix.com/zabbix/7.0/debian/pool/main/z/zabbix-release/zabbix-release_latest+debian12_all.deb
|
|
dpkg -i zabbix-release_latest+debian12_all.deb &>/dev/null
|
|
apt-get update &>/dev/null
|
|
apt-get install --only-upgrade zabbix-server-pgsql zabbix-frontend-php zabbix-agent2 zabbix-agent2-plugin-* &>/dev/null
|
|
|
|
msg_info "Starting ${APP} Services"
|
|
systemctl start zabbix-server zabbix-agent2
|
|
systemctl restart apache2
|
|
msg_ok "Started ${APP} Services"
|
|
|
|
msg_info "Cleaning Up"
|
|
rm -rf /tmp/zabbix-release_latest+debian12_all.deb
|
|
msg_ok "Cleaned"
|
|
msg_ok "Updated Successfully"
|
|
exit
|
|
}
|
|
|
|
start
|
|
build_container
|
|
description
|
|
|
|
msg_ok "Completed Successfully!\n"
|
|
echo -e "${APP} should be reachable by going to the following URL.
|
|
${BL}http://${IP}/zabbix${CL} \n"
|