Update octoprint.sh

create update script
This commit is contained in:
tteckster 2023-05-01 13:13:59 -04:00 committed by GitHub
parent 5405f4dc9d
commit e8bd1c21a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 4 deletions

View File

@ -53,10 +53,18 @@ function default_settings() {
function update_script() { function update_script() {
header_info header_info
if [[ ! -d /opt/octoprint ]]; then msg_error "No ${APP} Installation Found!"; exit; fi if [[ ! -d /opt/octoprint ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
msg_info "Updating $APP LXC" msg_info "Stopping OctoPrint"
apt-get update &>/dev/null systemctl stop octoprint
apt-get -y upgrade &>/dev/null msg_ok "Stopped OctoPrint"
msg_ok "Updated $APP LXC"
msg_info "Updating OctoPrint"
pip3 install octoprint --upgrade &>/dev/null
msg_ok "Updated OctoPrint"
msg_info "Starting OctoPrint"
systemctl start octoprint
msg_ok "Started OctoPrint"
msg_ok "Updated Successfully"
exit exit
} }