mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-05-01 14:25:05 +02:00
Compare commits
6 Commits
gitlab_sup
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
be81d6255e | ||
|
|
c9da2daec2 | ||
|
|
9015023e8c | ||
|
|
e2a51d4941 | ||
|
|
b4e0bb0686 | ||
|
|
1109fe4b0d |
10
CHANGELOG.md
10
CHANGELOG.md
@@ -452,7 +452,15 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
### 🆕 New Scripts
|
### 🆕 New Scripts
|
||||||
|
|
||||||
- Neko ([#14121](https://github.com/community-scripts/ProxmoxVE/pull/14121))
|
- Nagios ([#14126](https://github.com/community-scripts/ProxmoxVE/pull/14126))
|
||||||
|
- Neko ([#14121](https://github.com/community-scripts/ProxmoxVE/pull/14121))
|
||||||
|
|
||||||
|
### 🚀 Updated Scripts
|
||||||
|
|
||||||
|
- #### 🐞 Bug Fixes
|
||||||
|
|
||||||
|
- alpine-docker: install openssl as core dependency | alpine-komodo: check & install openssl if missing [@MickLesk](https://github.com/MickLesk) ([#14134](https://github.com/community-scripts/ProxmoxVE/pull/14134))
|
||||||
|
- endurain: update source references to Codeberg [@MickLesk](https://github.com/MickLesk) ([#14128](https://github.com/community-scripts/ProxmoxVE/pull/14128))
|
||||||
|
|
||||||
### 💾 Core
|
### 💾 Core
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
|
|||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: johanngrobe
|
# Author: johanngrobe
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
# Source: https://github.com/joaovitoriasilva/endurain
|
# Source: https://codeberg.org/endurain-project/endurain
|
||||||
|
|
||||||
APP="Endurain"
|
APP="Endurain"
|
||||||
var_tags="${var_tags:-sport;social-media}"
|
var_tags="${var_tags:-sport;social-media}"
|
||||||
@@ -28,7 +28,7 @@ function update_script() {
|
|||||||
msg_error "No ${APP} installation found!"
|
msg_error "No ${APP} installation found!"
|
||||||
exit 233
|
exit 233
|
||||||
fi
|
fi
|
||||||
if check_for_gh_release "endurain" "endurain-project/endurain"; then
|
if check_for_codeberg_release "endurain" "endurain-project/endurain"; then
|
||||||
msg_info "Stopping Service"
|
msg_info "Stopping Service"
|
||||||
systemctl stop endurain
|
systemctl stop endurain
|
||||||
msg_ok "Stopped Service"
|
msg_ok "Stopped Service"
|
||||||
@@ -38,7 +38,7 @@ function update_script() {
|
|||||||
cp /opt/endurain/frontend/app/dist/env.js /opt/endurain.env.js
|
cp /opt/endurain/frontend/app/dist/env.js /opt/endurain.env.js
|
||||||
msg_ok "Created Backup"
|
msg_ok "Created Backup"
|
||||||
|
|
||||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "endurain" "endurain-project/endurain" "tarball" "latest" "/opt/endurain"
|
CLEAN_INSTALL=1 fetch_and_deploy_codeberg_release "endurain" "endurain-project/endurain" "tarball" "latest" "/opt/endurain"
|
||||||
|
|
||||||
msg_info "Preparing Update"
|
msg_info "Preparing Update"
|
||||||
cd /opt/endurain
|
cd /opt/endurain
|
||||||
|
|||||||
6
ct/headers/nagios
Normal file
6
ct/headers/nagios
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
_ __ _
|
||||||
|
/ | / /___ _____ _(_)___ _____
|
||||||
|
/ |/ / __ `/ __ `/ / __ \/ ___/
|
||||||
|
/ /| / /_/ / /_/ / / /_/ (__ )
|
||||||
|
/_/ |_/\__,_/\__, /_/\____/____/
|
||||||
|
/____/
|
||||||
90
ct/nagios.sh
Normal file
90
ct/nagios.sh
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
||||||
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
|
# Author: CanbiZ (MickLesk)
|
||||||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
# Source: https://github.com/NagiosEnterprises/nagioscore
|
||||||
|
|
||||||
|
APP="Nagios"
|
||||||
|
var_tags="${var_tags:-monitoring;alerts;infrastructure}"
|
||||||
|
var_cpu="${var_cpu:-2}"
|
||||||
|
var_ram="${var_ram:-2048}"
|
||||||
|
var_disk="${var_disk:-20}"
|
||||||
|
var_os="${var_os:-debian}"
|
||||||
|
var_version="${var_version:-13}"
|
||||||
|
var_unprivileged="${var_unprivileged:-1}"
|
||||||
|
|
||||||
|
header_info "$APP"
|
||||||
|
variables
|
||||||
|
color
|
||||||
|
catch_errors
|
||||||
|
|
||||||
|
function update_script() {
|
||||||
|
header_info
|
||||||
|
check_container_storage
|
||||||
|
check_container_resources
|
||||||
|
|
||||||
|
if [[ ! -f /usr/local/nagios/etc/nagios.cfg ]]; then
|
||||||
|
msg_error "No ${APP} Installation Found!"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
msg_info "Backing up Configuration"
|
||||||
|
cp -a /usr/local/nagios/etc /opt/nagios-etc-backup
|
||||||
|
msg_ok "Backed up Configuration"
|
||||||
|
|
||||||
|
if check_for_gh_release "nagios" "NagiosEnterprises/nagioscore"; then
|
||||||
|
msg_info "Stopping Nagios"
|
||||||
|
systemctl stop nagios
|
||||||
|
msg_ok "Stopped Nagios"
|
||||||
|
|
||||||
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "nagios" "NagiosEnterprises/nagioscore" "tarball"
|
||||||
|
|
||||||
|
msg_info "Building Nagios Core"
|
||||||
|
cd /opt/nagios
|
||||||
|
$STD ./configure --with-httpd-conf=/etc/apache2/sites-enabled
|
||||||
|
$STD make all
|
||||||
|
$STD make install-groups-users
|
||||||
|
usermod -a -G nagios www-data
|
||||||
|
$STD make install
|
||||||
|
$STD make install-daemoninit
|
||||||
|
$STD make install-commandmode
|
||||||
|
$STD make install-webconf
|
||||||
|
$STD a2enmod rewrite
|
||||||
|
$STD a2enmod cgi
|
||||||
|
msg_ok "Built Nagios Core"
|
||||||
|
|
||||||
|
msg_info "Starting Nagios"
|
||||||
|
systemctl restart apache2
|
||||||
|
systemctl start nagios
|
||||||
|
msg_ok "Started Nagios"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if check_for_gh_release "nagios-plugins" "nagios-plugins/nagios-plugins"; then
|
||||||
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "nagios-plugins" "nagios-plugins/nagios-plugins" "tarball"
|
||||||
|
msg_info "Building Nagios Plugins"
|
||||||
|
cd /opt/nagios-plugins
|
||||||
|
$STD ./tools/setup
|
||||||
|
$STD ./configure
|
||||||
|
$STD make
|
||||||
|
$STD make install
|
||||||
|
msg_ok "Built Nagios Plugins"
|
||||||
|
fi
|
||||||
|
|
||||||
|
msg_info "Restoring Configuration"
|
||||||
|
rm -rf /usr/local/nagios/etc
|
||||||
|
cp -a /opt/nagios-etc-backup /usr/local/nagios/etc
|
||||||
|
rm -rf /opt/nagios-etc-backup
|
||||||
|
msg_ok "Restored Configuration"
|
||||||
|
msg_ok "Updated successfully!"
|
||||||
|
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}/nagios${CL}"
|
||||||
@@ -14,7 +14,7 @@ network_check
|
|||||||
update_os
|
update_os
|
||||||
|
|
||||||
msg_info "Installing Dependencies"
|
msg_info "Installing Dependencies"
|
||||||
$STD apk add tzdata
|
$STD apk add tzdata openssl
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
msg_info "Installing Docker"
|
msg_info "Installing Docker"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: johanngrobe
|
# Author: johanngrobe
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
# Source: https://github.com/joaovitoriasilva/endurain
|
# Source: https://codeberg.org/endurain-project/endurain
|
||||||
|
|
||||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||||
color
|
color
|
||||||
@@ -21,7 +21,7 @@ PYTHON_VERSION="3.13" setup_uv
|
|||||||
NODE_VERSION="24" setup_nodejs
|
NODE_VERSION="24" setup_nodejs
|
||||||
PG_VERSION="17" PG_MODULES="postgis" setup_postgresql
|
PG_VERSION="17" PG_MODULES="postgis" setup_postgresql
|
||||||
PG_DB_NAME="enduraindb" PG_DB_USER="endurain" setup_postgresql_db
|
PG_DB_NAME="enduraindb" PG_DB_USER="endurain" setup_postgresql_db
|
||||||
fetch_and_deploy_gh_release "endurain" "endurain-project/endurain" "tarball" "latest" "/opt/endurain"
|
fetch_and_deploy_codeberg_release "endurain" "endurain-project/endurain" "tarball" "latest" "/opt/endurain"
|
||||||
|
|
||||||
msg_info "Setting up Endurain"
|
msg_info "Setting up Endurain"
|
||||||
cd /opt/endurain
|
cd /opt/endurain
|
||||||
|
|||||||
78
install/nagios-install.sh
Normal file
78
install/nagios-install.sh
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
|
# Author: CanbiZ (MickLesk)
|
||||||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
# Source: https://github.com/NagiosEnterprises/nagioscore
|
||||||
|
|
||||||
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||||
|
color
|
||||||
|
verb_ip6
|
||||||
|
catch_errors
|
||||||
|
setting_up_container
|
||||||
|
network_check
|
||||||
|
update_os
|
||||||
|
|
||||||
|
msg_info "Installing Dependencies"
|
||||||
|
$STD apt install -y \
|
||||||
|
autoconf \
|
||||||
|
automake \
|
||||||
|
build-essential \
|
||||||
|
bc \
|
||||||
|
dc \
|
||||||
|
gawk \
|
||||||
|
gettext \
|
||||||
|
gperf \
|
||||||
|
libgd-dev \
|
||||||
|
libmcrypt-dev \
|
||||||
|
libnet-snmp-perl \
|
||||||
|
libssl-dev \
|
||||||
|
snmp \
|
||||||
|
apache2 \
|
||||||
|
apache2-utils
|
||||||
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
|
PHP_APACHE="YES" setup_php
|
||||||
|
|
||||||
|
fetch_and_deploy_gh_release "nagios" "NagiosEnterprises/nagioscore" "tarball"
|
||||||
|
|
||||||
|
msg_info "Building Nagios Core"
|
||||||
|
cd /opt/nagios
|
||||||
|
$STD ./configure --with-httpd-conf=/etc/apache2/sites-enabled
|
||||||
|
$STD make all
|
||||||
|
$STD make install-groups-users
|
||||||
|
usermod -a -G nagios www-data
|
||||||
|
$STD make install
|
||||||
|
$STD make install-daemoninit
|
||||||
|
$STD make install-commandmode
|
||||||
|
$STD make install-config
|
||||||
|
$STD make install-webconf
|
||||||
|
$STD a2enmod rewrite
|
||||||
|
$STD a2enmod cgi
|
||||||
|
msg_ok "Built Nagios Core"
|
||||||
|
|
||||||
|
fetch_and_deploy_gh_release "nagios-plugins" "nagios-plugins/nagios-plugins" "tarball"
|
||||||
|
|
||||||
|
msg_info "Building Nagios Plugins"
|
||||||
|
cd /opt/nagios-plugins
|
||||||
|
$STD ./tools/setup
|
||||||
|
$STD ./configure
|
||||||
|
$STD make
|
||||||
|
$STD make install
|
||||||
|
msg_ok "Built Nagios Plugins"
|
||||||
|
|
||||||
|
msg_info "Configuring Web Authentication"
|
||||||
|
$STD htpasswd -bc /usr/local/nagios/etc/htpasswd.users nagiosadmin nagiosadmin
|
||||||
|
chown root:www-data /usr/local/nagios/etc/htpasswd.users
|
||||||
|
chmod 640 /usr/local/nagios/etc/htpasswd.users
|
||||||
|
msg_ok "Configured Web Authentication"
|
||||||
|
|
||||||
|
msg_info "Starting Services"
|
||||||
|
systemctl enable -q apache2
|
||||||
|
systemctl restart apache2
|
||||||
|
systemctl enable -q --now nagios
|
||||||
|
msg_ok "Started Services"
|
||||||
|
|
||||||
|
motd_ssh
|
||||||
|
customize
|
||||||
|
cleanup_lxc
|
||||||
@@ -151,6 +151,23 @@ function check_proxmox_host() {
|
|||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
# CHECK / INSTALL DOCKER
|
# CHECK / INSTALL DOCKER
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
|
function ensure_openssl() {
|
||||||
|
if command -v openssl &>/dev/null; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
msg_info "Installing openssl"
|
||||||
|
if [[ -f /etc/alpine-release ]]; then
|
||||||
|
$STD apk add openssl
|
||||||
|
elif command -v apt-get &>/dev/null; then
|
||||||
|
$STD apt-get update
|
||||||
|
$STD apt-get install -y openssl
|
||||||
|
else
|
||||||
|
msg_error "openssl is required but could not be installed automatically."
|
||||||
|
exit 10
|
||||||
|
fi
|
||||||
|
msg_ok "Installed openssl"
|
||||||
|
}
|
||||||
|
|
||||||
function check_or_install_docker() {
|
function check_or_install_docker() {
|
||||||
if command -v docker &>/dev/null; then
|
if command -v docker &>/dev/null; then
|
||||||
msg_ok "Docker $(docker --version | cut -d' ' -f3 | tr -d ',') is available"
|
msg_ok "Docker $(docker --version | cut -d' ' -f3 | tr -d ',') is available"
|
||||||
@@ -160,6 +177,7 @@ function check_or_install_docker() {
|
|||||||
msg_error "Docker Compose plugin is not available. Please install it."
|
msg_error "Docker Compose plugin is not available. Please install it."
|
||||||
exit 10
|
exit 10
|
||||||
fi
|
fi
|
||||||
|
ensure_openssl
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -183,6 +201,8 @@ function check_or_install_docker() {
|
|||||||
$STD sh <(curl -fsSL https://get.docker.com)
|
$STD sh <(curl -fsSL https://get.docker.com)
|
||||||
fi
|
fi
|
||||||
msg_ok "Installed Docker"
|
msg_ok "Installed Docker"
|
||||||
|
|
||||||
|
ensure_openssl
|
||||||
}
|
}
|
||||||
|
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
|
|||||||
Reference in New Issue
Block a user