Compare commits

..

No commits in common. "0abd1c5b84ffa5c7104d47c76fadc545b30f7646" and "8f9b06609fb4fa313002630c359956c2e72a14d0" have entirely different histories.

3 changed files with 3 additions and 10 deletions

View File

@ -2,13 +2,6 @@
# Change Log
All notable changes to this project will be documented in this file.
## 2023-04-28
### Changed
- **Proxmox VE LXC Monitor**
- NEW Script
## 2023-04-26
### Changed

View File

@ -51,6 +51,7 @@ function default_settings() {
}
function update_script() {
#if [[ ! -d /opt/cronicle ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
UPD=$(whiptail --title "SUPPORT" --radiolist --cancel-button Exit-Script "Spacebar = Select" 11 58 2 \
"1" "Update ${APP}" ON \
"2" "Install ${APP} Worker" OFF \
@ -58,7 +59,6 @@ UPD=$(whiptail --title "SUPPORT" --radiolist --cancel-button Exit-Script "Spaceb
if [ "$UPD" == "1" ]; then
header_info
if [[ ! -d /opt/cronicle ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
msg_info "Updating ${APP}"
/opt/cronicle/bin/control.sh upgrade &>/dev/null
msg_ok "Updated ${APP}"
@ -94,7 +94,7 @@ sed -i "s/localhost:3012/${IP}:3012/g" /opt/cronicle/conf/config.json
cp /opt/cronicle/bin/cronicled.init /etc/init.d/cronicled &>/dev/null
chmod 775 /etc/init.d/cronicled
update-rc.d cronicled defaults &>/dev/null
msg_ok "Installed Cronicle Worker"
msg_ok "Installed Cronicle Worker on $hostname"
echo -e "\n Add Masters secret key to /opt/cronicle/conf/config.json \n"
exit
fi

View File

@ -109,6 +109,6 @@ if [ "$1" == "add" ]; then
elif [ "$1" == "remove" ]; then
remove
else
echo "Usage: $0 [ -s add | -s remove ]"
echo "Usage: $0 [add | remove]"
exit 1
fi