diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-02-27 00:08:23 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-02-27 00:08:23 +0800 |
commit | cf0b32d5b55e2f190f9e6b157d3173858d30a241 (patch) | |
tree | 81bddb34c9c6cd848837f11c27328d96ebf1f12f /services/docker/auto-backup | |
parent | 0a7549dc8a0152d41e1aa3ff16e47a47bbd1e097 (diff) | |
download | crupest-cf0b32d5b55e2f190f9e6b157d3173858d30a241.tar.gz crupest-cf0b32d5b55e2f190f9e6b157d3173858d30a241.tar.bz2 crupest-cf0b32d5b55e2f190f9e6b157d3173858d30a241.zip |
feat(backup): mount data ro.
Diffstat (limited to 'services/docker/auto-backup')
-rwxr-xr-x | services/docker/auto-backup/daemon.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/docker/auto-backup/daemon.bash b/services/docker/auto-backup/daemon.bash index 681dc65..ff670e3 100755 --- a/services/docker/auto-backup/daemon.bash +++ b/services/docker/auto-backup/daemon.bash @@ -68,7 +68,7 @@ function backup { echo "Remove tmp file..." rm "$tmp_file" - echo "$des_file_name" >>/data/backup.log + echo "$des_file_name" >> /data/auto-backup/backup.log success "Finish backup!" } |