updated man.txt

inserted beginning "--" in front of every rsync-opts
remotes/origin/4.0
Dominique Roux 10 years ago
parent 4f375a03c1
commit 036f90165e
  1. 2
      cdist/conf/type/__rsync/gencode-local
  2. 12
      cdist/conf/type/__rsync/man.text

@ -30,7 +30,7 @@ fi
set --
if [ -f "$__object/parameter/rsync-opts" ]; then
while read opts; do
set -- "$@" "$opts"
set -- "$@" "--$opts"
done < $__object/parameter/rsync-opts
fi

@ -47,6 +47,13 @@ destination::
remote-user::
Use this user instead of the default "root" for rsync operations.
rsync-opts::
Use this option to give rsync options with.
See rsync(1) for available options.
Only "--" options are supported.
Write the options without the beginning "--"
Can be specified multiple times.
MESSAGES
--------
NONE
@ -73,6 +80,11 @@ __rsync otherstuff \
--destination /usr/local/bin \
--source "$__type/files/package2"
# Use rsync option --exclude
__rsync /tmp/testdir \
--source /etc \
--rsync-opts exclude=sshd_conf
--------------------------------------------------------------------------------

Loading…
Cancel
Save