Add --no-group to rsync

So that the files and directories are not owned by "users" group, but
root.
This commit is contained in:
pyllyukko 2016-02-10 23:22:21 +02:00
parent aa11d763d4
commit e190f85dc1
No known key found for this signature in database
GPG Key ID: 9C029134274620C5

View File

@ -2364,7 +2364,7 @@ rsync_command() {
local SYNC_LOCK=$SBOPKGTMP/sbopkg_sync.lck
rsync --archive --delete --no-owner --exclude="*.sbopkg" \
rsync --archive --delete --no-owner --no-group --exclude="*.sbopkg" \
$RSYNCFLAGS $REPO_LINK/ $REPO_DIR/
case $? in
35)