Update thelounge.sh

This commit is contained in:
CanbiZ 2024-11-29 19:07:58 +01:00 committed by GitHub
parent dc49ad1133
commit bc10a3fa17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -53,16 +53,12 @@ function default_settings() {
} }
function update_script() { function update_script() {
header_info header_info
check_container_storage check_container_storage
check_container_resources check_container_resources
if [[ ! -f /usr/lib/systemd/system/thelounge.service ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
if [[ ! -f /usr/lib/systemd/system/thelounge.service ]]; then RELEASE=$(curl -s https://api.github.com/repos/thelounge/thelounge-deb/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
msg_error "No ${APP} Installation Found!" if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then
exit
fi
RELEASE=$(curl -s https://api.github.com/repos/thelounge/thelounge-deb/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then
msg_info "Stopping Service" msg_info "Stopping Service"
systemctl stop thelounge systemctl stop thelounge
msg_ok "Stopped Service" msg_ok "Stopped Service"
@ -82,10 +78,10 @@ function update_script() {
rm -rf "/opt/thelounge_${RELEASE}_all.deb" rm -rf "/opt/thelounge_${RELEASE}_all.deb"
msg_ok "Cleaned" msg_ok "Cleaned"
msg_ok "Updated Successfully" msg_ok "Updated Successfully"
else else
msg_ok "No update required. ${APP} is already at v${RELEASE}." msg_ok "No update required. ${APP} is already at v${RELEASE}."
fi fi
exit exit
} }
start start
@ -93,5 +89,5 @@ build_container
description description
msg_ok "Completed Successfully!\n" msg_ok "Completed Successfully!\n"
echo -e "${APP} should be reachable by going to the following URL. echo -e "${APP} Setup should be reachable by going to the following URL.
${BL}http://${IP}:9000${CL} \n" ${BL}http://${IP}:9000${CL} \n"