From 2f4ed170f1e8510da0e26610363d9310dfcfc3af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 3 Jun 2026 07:13:36 +0000 Subject: [PATCH 1/2] chore: update app headers [skip ci] --- ct/headers/kiwix | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ct/headers/kiwix diff --git a/ct/headers/kiwix b/ct/headers/kiwix new file mode 100644 index 00000000..743f3c30 --- /dev/null +++ b/ct/headers/kiwix @@ -0,0 +1,6 @@ + __ __ _ _ + / //_/(_) __(_) __ + / ,< / / | /| / / / |/_/ + / /| |/ /| |/ |/ / /> < +/_/ |_/_/ |__/|__/_/_/|_| + From 71531f709a4ab8c948c4e955de8d87a337e69546 Mon Sep 17 00:00:00 2001 From: tremor021 Date: Wed, 3 Jun 2026 09:21:51 +0200 Subject: [PATCH 2/2] ezBookkeeping: Fix backup restoring --- ct/ezbookkeeping.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ct/ezbookkeeping.sh b/ct/ezbookkeeping.sh index 48a40787..0d95913f 100644 --- a/ct/ezbookkeeping.sh +++ b/ct/ezbookkeeping.sh @@ -45,9 +45,9 @@ function update_script() { CLEAN_INSTALL=1 fetch_and_deploy_gh_release "ezbookkeeping" "mayswind/ezbookkeeping" "prebuild" "latest" "/opt/ezbookkeeping" "ezbookkeeping-*-linux-amd64.tar.gz" msg_info "Restoring configuration" - mv -f /opt/ezbookkeeping-backup/ezbookkeeping.ini /opt/ezbookkeeping/conf/ - mv -f /opt/ezbookkeeping-backup/data /opt/ezbookkeeping/data/ - mv -f /opt/ezbookkeeping-backup/storage /opt/ezbookkeeping/storage/ + cp -rf /opt/ezbookkeeping-backup/ezbookkeeping.ini /opt/ezbookkeeping/conf/ + cp -rf /opt/ezbookkeeping-backup/data/. /opt/ezbookkeeping/data/ + cp -rf /opt/ezbookkeeping-backup/storage/. /opt/ezbookkeeping/storage/ rm -rf /opt/ezbookkeeping-backup msg_ok "Restored configuration"