Update gatus

This commit is contained in:
tremor021 2025-05-09 00:18:31 +02:00
parent ce16742a78
commit 0866e776f5

View File

@ -29,7 +29,7 @@ function update_script() {
RELEASE=$(curl -s https://api.github.com/repos/TwiN/gatus/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') RELEASE=$(curl -s https://api.github.com/repos/TwiN/gatus/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
if [ "${RELEASE}" != "$(cat /opt/gatus_version.txt)" ] || [ ! -f /opt/gatus_version.txt ]; then if [ "${RELEASE}" != "$(cat /opt/gatus_version.txt)" ] || [ ! -f /opt/gatus_version.txt ]; then
msg_info "Updating ${APP} LXC" msg_info "Updating ${APP} LXC"
service gatus stop $STD service gatus stop
mv /opt/gatus/config/config.yaml /opt mv /opt/gatus/config/config.yaml /opt
rm -rf /opt/gatus/* rm -rf /opt/gatus/*
temp_file=$(mktemp) temp_file=$(mktemp)
@ -42,7 +42,7 @@ function update_script() {
mv /opt/config.yaml config mv /opt/config.yaml config
rm -f "$temp_file" rm -f "$temp_file"
echo "${RELEASE}" >/opt/gatus_version.txt echo "${RELEASE}" >/opt/gatus_version.txt
service gatus start $STD service gatus start
msg_ok "Updated Successfully" msg_ok "Updated Successfully"
else else
msg_ok "No update required. ${APP} is already at ${RELEASE}" msg_ok "No update required. ${APP} is already at ${RELEASE}"