Compare commits

..

2 Commits

Author SHA1 Message Date
tteckster 7a3530b246
Update go2rtc.sh
tweak
2023-05-24 05:50:57 -04:00
tteckster 8d0a731090
Update go2rtc.sh
create app update
2023-05-24 05:29:58 -04:00
1 changed files with 9 additions and 5 deletions

View File

@ -53,11 +53,15 @@ function default_settings() {
function update_script() { function update_script() {
header_info header_info
if [[ ! -d /var ]]; then msg_error "No ${APP} Installation Found!"; exit; fi if [[ ! -d /opt/go2rtc ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
msg_info "Updating $APP LXC" msg_info "Updating $APP"
apt-get update &>/dev/null systemctl stop go2rtc
apt-get -y upgrade &>/dev/null cd /opt/go2rtc
msg_ok "Updated $APP LXC" rm go2rtc_linux_amd64
wget -q https://github.com/AlexxIT/go2rtc/releases/latest/download/go2rtc_linux_amd64
chmod +x go2rtc_linux_amd64
systemctl start go2rtc
msg_ok "Updated $APP"
exit exit
} }