ProxmoxVE/ct/zoneminder.sh

75 lines
2.1 KiB
Bash
Raw Normal View History

2025-01-22 02:57:56 +00:00
#!/usr/bin/env bash
source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
2025-01-22 02:57:56 +00:00
# Copyright (c) 2021-2024 community-scripts ORG
# Author: connorjfarrell
2025-01-22 02:57:56 +00:00
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://zoneminder.readthedocs.io/en/latest/installationguide/ubuntu.html#ubuntu-22-04-jammy
2025-01-22 02:57:56 +00:00
APP="ZoneMinder"
2025-01-22 03:28:26 +00:00
var_tags="nvr"
2025-01-22 02:57:56 +00:00
var_cpu="2"
var_ram="2048"
var_disk="16"
var_os="ubuntu"
var_version="22.04"
var_unprivileged="1"
header_info "$APP"
base_settings
variables
color
catch_errors
function update_script() {
header_info
check_container_storage
check_container_resources
if [[ ! -f /usr/bin/zmpkg.pl ]]; then
msg_error "No ${APP} Installation Found!"
exit
fi
RELEASE=$(curl -fsSL https://api.github.com/repos/ZoneMinder/zoneminder/releases/latest | grep -Po '"tag_name": "\K.*?(?=")')
if [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt 2>/dev/null || echo 'none')" ]] || [[ ! -f /opt/${APP}_version.txt ]]; then
msg_info "Updating $APP"
msg_info "Stopping $APP"
systemctl stop zoneminder
msg_ok "Stopped $APP"
msg_info "Creating Backup"
tar -czf "/opt/${APP}_backup_$(date +%F).tar.gz" /etc/zm /usr/share/zoneminder /var/cache/zoneminder
msg_ok "Backup Created"
msg_info "Updating $APP to v${RELEASE}"
apt-get update && apt-get install --only-upgrade zoneminder -y
msg_ok "Updated $APP to v${RELEASE}"
msg_info "Starting $APP"
systemctl start zoneminder
sleep 2
msg_ok "Started $APP"
msg_info "Cleaning Up"
rm -rf /tmp/zoneminder-update
msg_ok "Cleanup Completed"
echo "${RELEASE}" >/opt/${APP}_version.txt
msg_ok "Update Successful"
else
msg_ok "No update required. ${APP} is already at v${RELEASE}"
fi
exit
}
start
build_container
description
msg_ok "Completed Successfully!\n"
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:80/zm${CL}"