Compare commits

..

No commits in common. "7cfb239d70ce9bf8950bd703405f0c095a89673f" and "b3a6f29bc2aa678a26785e29b78b9a776b02aeb7" have entirely different histories.

3 changed files with 25 additions and 80 deletions

View File

@ -74,12 +74,6 @@ function update_script() {
case $CHOICE in case $CHOICE in
1) 1)
apk update && apk upgrade apk update && apk upgrade
if ! apk -e info php82-sodium >/dev/null 2>&1; then
apk add -q php82-sodium
fi
if ! apk -e info php82-bz2 >/dev/null 2>&1; then
apk add -q php82-bz2
fi
su nextcloud -s /bin/sh -c 'php82 /usr/share/webapps/nextcloud/occ upgrade' su nextcloud -s /bin/sh -c 'php82 /usr/share/webapps/nextcloud/occ upgrade'
su nextcloud -s /bin/sh -c 'php82 /usr/share/webapps/nextcloud/occ db:add-missing-indices' su nextcloud -s /bin/sh -c 'php82 /usr/share/webapps/nextcloud/occ db:add-missing-indices'
exit exit

View File

@ -34,8 +34,6 @@ $STD apk add php82-pecl-smbclient
$STD apk add php82-pecl-imagick $STD apk add php82-pecl-imagick
$STD apk add php82-pecl-vips $STD apk add php82-pecl-vips
$STD apk add php82-exif $STD apk add php82-exif
$STD apk add php82-sodium
$STD apk add php82-bz2
$STD apk add redis $STD apk add redis
msg_ok "Installed PHP/Redis" msg_ok "Installed PHP/Redis"

View File

@ -5,7 +5,6 @@
# License: MIT # License: MIT
# https://github.com/tteck/Proxmox/raw/main/LICENSE # https://github.com/tteck/Proxmox/raw/main/LICENSE
function header_info {
clear clear
cat <<"EOF" cat <<"EOF"
_ __ __ ____ __ _ __ __ ____ __
@ -15,33 +14,10 @@ function header_info {
/_/ |_/\___/\__/_____/\__,_/\__/\__,_/ /_/ |_/\___/\__/_____/\__,_/\__/\__,_/
EOF EOF
}
YW=$(echo "\033[33m")
BL=$(echo "\033[36m")
RD=$(echo "\033[01;31m")
GN=$(echo "\033[1;92m")
CL=$(echo "\033[m")
BFR="\\r\\033[K"
HOLD="-"
CM="${GN}${CL}"
silent() { "$@" >/dev/null 2>&1; }
set -e
header_info
function msg_info() {
local msg="$1"
echo -ne " ${HOLD} ${YW}${msg}..."
}
function msg_ok() {
local msg="$1"
echo -e "${BFR} ${CM} ${GN}${msg}${CL}"
}
install() { install() {
while true; do while true; do
read -p "Are you sure you want to install NetData on Proxmox VE host. Proceed(y/n)?" yn read -p "This script will install NetData on Proxmox VE 8+. Proceed(y/n)?" yn
case $yn in case $yn in
[Yy]*) break ;; [Yy]*) break ;;
[Nn]*) exit ;; [Nn]*) exit ;;
@ -49,47 +25,24 @@ install() {
esac esac
done done
read -r -p "Verbose mode? <y/N> " prompt
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
STD=""
else
STD="silent"
fi
header_info
msg_info "Setting up repository"
wget -q https://repo.netdata.cloud/repos/repoconfig/debian/bookworm/netdata-repo_2-2+debian12_all.deb wget -q https://repo.netdata.cloud/repos/repoconfig/debian/bookworm/netdata-repo_2-2+debian12_all.deb
$STD dpkg -i netdata-repo_2-2+debian12_all.deb dpkg -i netdata-repo_2-2+debian12_all.deb
rm -rf netdata-repo_2-2+debian12_all.deb rm -rf netdata-repo_2-2+debian12_all.deb
msg_ok "Set up repository" apt-get update &>/dev/null
apt-get -y upgrade
msg_info "Installing Netdata" apt-get install -y netdata
$STD apt-get update echo -e "\nInstalled NetData (http://$(hostname -I | awk '{print $1}'):19999)\n"
$STD apt-get install -y netdata
msg_ok "Installed Netdata\n"
msg_ok "Completed Successfully!\n"
echo -e "\n Netdata should be reachable at${BL} http://$(hostname -I | awk '{print $1}'):19999 ${CL}\n"
} }
uninstall() { uninstall() {
read -r -p "Verbose mode? <y/N> " prompt
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
STD=""
else
STD="silent"
fi
header_info
msg_info "Uninstalling Netdata"
systemctl stop netdata systemctl stop netdata
rm -rf /var/log/netdata /var/lib/netdata /var/cache/netdata /etc/netdata/go.d apt-get remove --purge -y netdata netdata-repo
rm -rf /etc/apt/trusted.gpg.d/netdata-archive-keyring.gpg /etc/apt/sources.list.d/netdata.list rm -rf /var/log/netdata /var/lib/netdata /var/cache/netdata /etc/apt/sources.list.d/netdata.list
$STD apt-get remove --purge -y netdata netdata-repo rm -rf /etc/apt/trusted.gpg.d/netdata-archive-keyring.gpg
systemctl daemon-reload systemctl daemon-reload
$STD apt autoremove -y apt autoremove -y
$STD userdel netdata userdel netdata
msg_ok "Uninstalled Netdata\n" echo -e "\nRemoved NetData from Proxmox VE\n"
msg_ok "Completed Successfully!\n"
} }
if ! pveversion | grep -Eq "pve-manager/(8\.[0-9])"; then if ! pveversion | grep -Eq "pve-manager/(8\.[0-9])"; then