Add update script to Pocketbase (#535)

* feat: pocketbase update script

* Apply suggestions from code review

add `v` prefix to release version outputs

Co-authored-by: Håvard Gjøby Thom <34199185+havardthom@users.noreply.github.com>

* remove unnecessary dir creation

* move temp file creation to before apt cleanup

* change to updateable

* switch to provided update command

* check for availability of pocketbase binary before running update

* Apply suggestions from code review

Co-authored-by: Håvard Gjøby Thom <34199185+havardthom@users.noreply.github.com>

* fix code suggestions merge issue

---------

Co-authored-by: Håvard Gjøby Thom <34199185+havardthom@users.noreply.github.com>
This commit is contained in:
Dominik Siebel 2024-11-28 15:36:58 +01:00 committed by GitHub
parent 11147e4482
commit e9ebfffb57
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 25 additions and 4 deletions

View file

@ -52,6 +52,26 @@ function default_settings() {
echo_default
}
function update_script() {
header_info
check_container_storage
check_container_resources
if [[ ! -f /etc/systemd/system/pocketbase.service || ! -x /opt/pocketbase/pocketbase ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
msg_info "Stopping ${APP}"
systemctl stop pocketbase
msg_ok "Stopped ${APP}"
msg_info "Updating ${APP}"
/opt/pocketbase/pocketbase update
msg_ok "Updated ${APP}"
msg_info "Starting ${APP}"
systemctl start pocketbase
msg_ok "Started ${APP}"
msg_ok "Updated Successfully"
exit
}
start
build_container
description