mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-02-06 07:49:17 +00:00
Compare commits
25 Commits
7846c3855d
...
bdafc76ff9
Author | SHA1 | Date | |
---|---|---|---|
|
bdafc76ff9 | ||
|
b6b5748e9a | ||
|
31ef2e8592 | ||
|
64861d0221 | ||
|
364ead3b56 | ||
|
4e0af7f49b | ||
|
2ff64bdc37 | ||
|
17b23ba04b | ||
|
691c9209dd | ||
|
b74d275b3e | ||
|
e8e0f10cf7 | ||
|
b105a16562 | ||
|
ff72a6af26 | ||
|
3a28e39cd3 | ||
|
3b4b895361 | ||
|
445baab1ef | ||
|
2fd156686e | ||
|
b7a99e6bae | ||
|
7691253739 | ||
|
0b6fe6e5e3 | ||
|
90d8ee2a38 | ||
|
215b605099 | ||
|
d5c28b632b | ||
|
5023b8468d | ||
|
0da98be2ef |
60
ct/zoneminder.sh
Normal file
60
ct/zoneminder.sh
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
||||||
|
# Copyright (c) 2021-2024 community-scripts ORG
|
||||||
|
# Author: connorjfarrell
|
||||||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
# Source: https://zoneminder.readthedocs.io
|
||||||
|
|
||||||
|
APP="ZoneMinder"
|
||||||
|
var_tags="nvr"
|
||||||
|
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 to v${RELEASE}"
|
||||||
|
|
||||||
|
systemctl stop zoneminder
|
||||||
|
|
||||||
|
apt-get update && apt-get install --only-upgrade zoneminder -y
|
||||||
|
|
||||||
|
systemctl start zoneminder
|
||||||
|
sleep 2
|
||||||
|
|
||||||
|
echo "${RELEASE}" >/opt/${APP}_version.txt
|
||||||
|
msg_ok "Update Successful"
|
||||||
|
else
|
||||||
|
msg_ok "${APP} is already 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}"
|
67
install/zoneminder-install.sh
Normal file
67
install/zoneminder-install.sh
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Copyright (c) 2021-2024 community-scripts ORG
|
||||||
|
# Author: connorjfarrell
|
||||||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
# Source: https://zoneminder.readthedocs.io
|
||||||
|
|
||||||
|
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
|
||||||
|
color
|
||||||
|
verb_ip6
|
||||||
|
catch_errors
|
||||||
|
setting_up_container
|
||||||
|
network_check
|
||||||
|
update_os
|
||||||
|
|
||||||
|
msg_info "Installing Dependencies"
|
||||||
|
$STD apt-get install -y \
|
||||||
|
curl \
|
||||||
|
sudo \
|
||||||
|
mc \
|
||||||
|
apache2 \
|
||||||
|
mariadb-server \
|
||||||
|
libapache2-mod-php
|
||||||
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
|
msg_info "Pre-seeding dbconfig-common for ZoneMinder"
|
||||||
|
|
||||||
|
ROOT_PASS=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13)
|
||||||
|
ZMPASS=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13)
|
||||||
|
|
||||||
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
echo "zoneminder zoneminder/dbconfig-install boolean true" | debconf-set-selections
|
||||||
|
echo "zoneminder zoneminder/dbconfig-reinstall boolean false" | debconf-set-selections
|
||||||
|
echo "zoneminder zoneminder/mysql/admin-user string root" | debconf-set-selections
|
||||||
|
echo "zoneminder zoneminder/mysql/admin-pass password $ROOT_PASS" | debconf-set-selections
|
||||||
|
echo "zoneminder zoneminder/mysql/app-pass password $ZMPASS" | debconf-set-selections
|
||||||
|
echo "zoneminder zoneminder/app-password-confirm password $ZMPASS"| debconf-set-selections
|
||||||
|
|
||||||
|
{
|
||||||
|
echo "ZoneMinder Database Credentials"
|
||||||
|
echo "MySQL Root Password: $ROOT_PASS"
|
||||||
|
echo "ZoneMinder DB User: zmuser"
|
||||||
|
echo "ZoneMinder DB Pass: $ZMPASS"
|
||||||
|
echo "ZoneMinder DB Name: zm"
|
||||||
|
} >> ~/zoneminder.creds
|
||||||
|
msg_ok "dbconfig pre-seeding complete"
|
||||||
|
|
||||||
|
msg_info "Enabling ZoneMinder PPA and installing ZoneMinder"
|
||||||
|
$STD apt install -y software-properties-common
|
||||||
|
$STD add-apt-repository ppa:iconnor/zoneminder-1.36 -y
|
||||||
|
$STD apt update
|
||||||
|
$STD apt-get install -y zoneminder
|
||||||
|
msg_ok "ZoneMinder installed"
|
||||||
|
|
||||||
|
msg_info "Configuring Apache and ZoneMinder"
|
||||||
|
a2enmod rewrite
|
||||||
|
a2enconf zoneminder
|
||||||
|
systemctl restart apache2
|
||||||
|
systemctl enable zoneminder
|
||||||
|
systemctl start zoneminder
|
||||||
|
msg_ok "Apache and ZoneMinder configured and running"
|
||||||
|
|
||||||
|
msg_info "Cleaning up"
|
||||||
|
$STD apt-get -y autoremove
|
||||||
|
$STD apt-get -y autoclean
|
||||||
|
msg_ok "Cleaned"
|
34
json/zoneminder.json
Normal file
34
json/zoneminder.json
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"name": "ZoneMinder",
|
||||||
|
"slug": "zoneminder",
|
||||||
|
"categories": [
|
||||||
|
15
|
||||||
|
],
|
||||||
|
"date_created": "2025-01-21",
|
||||||
|
"type": "ct",
|
||||||
|
"updateable": true,
|
||||||
|
"privileged": false,
|
||||||
|
"interface_port": 80,
|
||||||
|
"documentation": null,
|
||||||
|
"website": "https://zoneminder.com",
|
||||||
|
"logo": "https://raw.githubusercontent.com/ZoneMinder/ZoneMinder/master/web/graphics/icon_zoneminder.png",
|
||||||
|
"description": "ZoneMinder is an open source video surveillance solution for Linux.",
|
||||||
|
"install_methods": [
|
||||||
|
{
|
||||||
|
"type": "default",
|
||||||
|
"script": "ct/ZoneMinder.sh",
|
||||||
|
"resources": {
|
||||||
|
"cpu": 2,
|
||||||
|
"ram": 2048,
|
||||||
|
"hdd": 16,
|
||||||
|
"os": "ubuntu",
|
||||||
|
"version": "22.04"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"default_credentials": {
|
||||||
|
"username": null,
|
||||||
|
"password": null
|
||||||
|
},
|
||||||
|
"notes": []
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user