|
|
@ -54,6 +54,13 @@ function default_settings() {
|
|
|
|
function update_script() {
|
|
|
|
function update_script() {
|
|
|
|
header_info
|
|
|
|
header_info
|
|
|
|
if [[ ! -d /opt/uptime-kuma ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
|
|
|
|
if [[ ! -d /opt/uptime-kuma ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
|
|
|
|
|
|
|
|
if [[ "$(node -v | cut -d 'v' -f 2)" == "18."* ]]; then
|
|
|
|
|
|
|
|
if ! command -v npm >/dev/null 2>&1; then
|
|
|
|
|
|
|
|
echo "Installing NPM..."
|
|
|
|
|
|
|
|
apt-get install -y npm >/dev/null 2>&1
|
|
|
|
|
|
|
|
echo "Installed NPM..."
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
fi
|
|
|
|
LATEST=$(curl -sL https://api.github.com/repos/louislam/uptime-kuma/releases/latest | grep '"tag_name":' | cut -d'"' -f4)
|
|
|
|
LATEST=$(curl -sL https://api.github.com/repos/louislam/uptime-kuma/releases/latest | grep '"tag_name":' | cut -d'"' -f4)
|
|
|
|
msg_info "Stopping ${APP}"
|
|
|
|
msg_info "Stopping ${APP}"
|
|
|
|
sudo systemctl stop uptime-kuma &>/dev/null
|
|
|
|
sudo systemctl stop uptime-kuma &>/dev/null
|
|
|
|