Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/101c83979d4713cb147420903c9edc411986b3b4?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
27 additions and
2 deletions
@ -55,7 +55,29 @@ function default_settings() {
function update_script( ) {
function update_script( ) {
header_info
header_info
if [ [ ! -d /opt/gotify ] ] ; then msg_error " No ${ APP } Installation Found! " ; exit; fi
if [ [ ! -d /opt/gotify ] ] ; then msg_error " No ${ APP } Installation Found! " ; exit; fi
msg_error "There is currently no update path available."
RELEASE = $( curl -s https://api.github.com/repos/gotify/server/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 ${ APP } "
systemctl stop gotify
msg_ok " Stopped ${ APP } "
msg_info " Updating ${ APP } to ${ RELEASE } "
cd /opt/gotify
wget -q https://github.com/gotify/server/releases/download/v${ RELEASE } /gotify-linux-amd64.zip
unzip -oq gotify-linux-amd64.zip
rm -rf gotify-linux-amd64.zip
chmod +x gotify-linux-amd64
echo " ${ RELEASE } " >/opt/${ APP } _version.txt
msg_ok " Updated ${ APP } to ${ RELEASE } "
msg_info " Starting ${ APP } "
systemctl start gotify
msg_ok " Started ${ APP } "
msg_ok "Updated Successfully"
else
msg_ok " No update required. ${ APP } is already at ${ RELEASE } "
fi
exit
exit
}
}
@ -27,7 +27,10 @@ wget -q https://github.com/gotify/server/releases/download/v${RELEASE}/gotify-li
$STD unzip gotify-linux-amd64.zip
$STD unzip gotify-linux-amd64.zip
rm -rf gotify-linux-amd64.zip
rm -rf gotify-linux-amd64.zip
chmod +x gotify-linux-amd64
chmod +x gotify-linux-amd64
echo " ${ RELEASE } " >/opt/${ APPLICATION } _version.txt
msg_ok "Installed Gotify"
msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/gotify.service
cat <<EOF >/etc/systemd/system/gotify.service
[ Unit]
[ Unit]
Description = Gotify
Description = Gotify
@ -46,7 +49,7 @@ RestartSec=3
WantedBy = multi-user.target
WantedBy = multi-user.target
EOF
EOF
systemctl enable -q --now gotify
systemctl enable -q --now gotify
msg_ok " Installed Gotify "
msg_ok " Created Service "
motd_ssh
motd_ssh
customize
customize