mirror of
https://cgit.krebsco.de/krops
synced 2024-11-23 03:29:48 +01:00
populate: re-add default values for useChecksum/exclude
Turns out, those where required.
This commit is contained in:
parent
fff9b24ec9
commit
fce5826802
1 changed files with 2 additions and 2 deletions
|
@ -156,11 +156,11 @@ let
|
|||
source_path=$source_path/
|
||||
fi
|
||||
${rsync}/bin/rsync \
|
||||
${optionalString config.useChecksum /* sh */ "--checksum"} \
|
||||
${optionalString (config.useChecksum or false) /* sh */ "--checksum"} \
|
||||
${optionalString target.sudo /* sh */ "--rsync-path=\"sudo rsync\""} \
|
||||
${concatMapStringsSep " "
|
||||
(pattern: /* sh */ "--exclude ${quote pattern}")
|
||||
config.exclude} \
|
||||
(config.exclude or [])} \
|
||||
-e ${quote (ssh' target)} \
|
||||
-vFrlptD \
|
||||
--delete-excluded \
|
||||
|
|
Loading…
Reference in a new issue