Revision 9896
Added by Aaron Marcuse-Kubitza over 11 years ago
local.sh | ||
---|---|---|
76 | 76 |
: "${sync_local_dir=$root_dir}" |
77 | 77 |
: "${sync_remote_url=jupiter:/data/dev/aaronmk/bien}" |
78 | 78 |
|
79 |
sync_upload() { echo_func; use_sync; upload "$@"; } |
|
79 |
sync_upload() { echo_func; use_sync; upload --no-owner --no-group "$@"; }
|
|
80 | 80 |
|
81 | 81 |
fi |
Also available in: Unified diff
bugfix: lib/sh/local.sh: sync_upload(): need to use --no-group to prevent the group from being reset to aaronmk upon download from jupiter (which uses group aaronmk instead of bien). use ./fix_perms to set the group of all files to bien. also use --no-owner in case running as root.