Commit 770f344c authored by Илья Рассадин's avatar Илья Рассадин
Browse files

Merge branch 'ir-ce-rsync32' into 'master'

Workaround rsync module chown bug

See merge request boilerplate/ci!7
parents c16f664c 62cdb22d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -109,7 +109,7 @@ before_script:
  echo "group=$group" >> cetera_build.env

  if [ "$SSH_USER" = "root" ]; then
      export RSYNC_ADMIN_PARAMS="--links --safe-links -avz --chown=$user:$group"
      export RSYNC_ADMIN_PARAMS="--links --safe-links -avz --usermap="0-99999:$user" --groupmap="0-99999:$group"
  else
      export RSYNC_ADMIN_PARAMS="--links --safe-links -avz"
  fi
+1 −1
Original line number Diff line number Diff line
FROM debian:11
FROM debian:13

RUN apt-get update -qq && apt-get install -qqy \
    rsync \