From 0f09880aa6ae44fcf0eed183a12d69971b54cfe4 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Mon, 7 Jun 2021 06:40:05 -0400 Subject: [PATCH] add -H option to /bin/chown call in case 'encrypted' is a symbolic link --- management/backup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/management/backup.py b/management/backup.py index 5a155512..313e04b2 100755 --- a/management/backup.py +++ b/management/backup.py @@ -319,7 +319,7 @@ def perform_backup(full_backup): # Change ownership of backups to the user-data user, so that the after-bcakup # script can access them. if get_target_type(config) == 'file': - shell('check_call', ["/bin/chown", "-R", env["STORAGE_USER"], backup_dir]) + shell('check_call', ["/bin/chown", "-RH", env["STORAGE_USER"], backup_dir]) # Execute a post-backup script that does the copying to a remote server. # Run as the STORAGE_USER user, not as root. Pass our settings in