Compare commits

...

1 Commits

Author SHA1 Message Date
MickLesk
90ec9ae4c6 fix(bambuddy): add mkdir before data restore & add ffmpeg dependency
- Add mkdir -p before restoring data dir to prevent data loss on update
  (CLEAN_INSTALL=1 wipes target dir including SQLite DB)
- Add ffmpeg as dependency for printer cam support
- Add ensure_dependencies ffmpeg to update path for existing containers

Fixes #13598, Fixes #13599
2026-04-08 19:05:29 +02:00
2 changed files with 4 additions and 1 deletions

View File

@@ -29,6 +29,8 @@ function update_script() {
exit
fi
ensure_dependencies ffmpeg
if check_for_gh_release "bambuddy" "maziggy/bambuddy"; then
msg_info "Stopping Service"
systemctl stop bambuddy
@@ -54,6 +56,7 @@ function update_script() {
msg_ok "Rebuilt Frontend"
msg_info "Restoring Configuration and Data"
mkdir -p /opt/bambuddy/data
cp /opt/bambuddy.env.bak /opt/bambuddy/.env
cp -r /opt/bambuddy_data_bak/. /opt/bambuddy/data/
rm -f /opt/bambuddy.env.bak

View File

@@ -14,7 +14,7 @@ network_check
update_os
msg_info "Installing Dependencies"
$STD apt install -y libglib2.0-0
$STD apt install -y libglib2.0-0 ffmpeg
msg_ok "Installed Dependencies"
PYTHON_VERSION="3.13" setup_uv