Update scrutiny.sh

This commit is contained in:
CanbiZ 2024-06-25 17:22:16 +02:00 committed by GitHub
parent 5d3b287e53
commit 29ccfc9d20
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 3 deletions

View File

@ -53,7 +53,6 @@ function default_settings() {
echo_default
}
function update_script() {
if [[ ! -d /opt/scrutiny ]]; then
msg_error "No ${APP} Installation Found!"
@ -62,10 +61,11 @@ function update_script() {
RELEASE=$(curl -s https://api.github.com/repos/AnalogJ/scrutiny/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
UPD=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "Scrutiny Management" --radiolist --cancel-button Exit-Script "Spacebar = Select" 11 58 3 \
UPD=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "Scrutiny Management" --radiolist --cancel-button Exit-Script "Spacebar = Select" 15 70 4 \
"1" "Update Scrutiny to $RELEASE" ON \
"2" "Start Scrutiny Webapp" OFF \
"3" "Create/Start Scrutiny Collector" OFF \
"4" "Change Scrutiny Settings" OFF \
3>&1 1>&2 2>&3)
header_info
@ -114,7 +114,6 @@ function update_script() {
fi
exit
fi
if [ "$UPD" == "2" ]; then
msg_info "Checking for Scrutiny Webapp Service"
if systemctl list-units --full -all | grep -Fq 'scrutiny.service'; then
@ -180,6 +179,10 @@ EOF
msg_ok "Started Scrutiny Collector Service"
exit
fi
if [ "$UPD" == "4" ]; then
nano /opt/scrutiny/config/scrutiny.yaml
exit
fi
}
start