mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-11 23:25:28 +01:00
synchronize: correct typo
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
7e6adc977f
commit
5d0c5ae3a6
2 changed files with 4 additions and 1 deletions
3
changelogs/fragments/synchronize.yml
Normal file
3
changelogs/fragments/synchronize.yml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
minor_changes:
|
||||||
|
- synchronize - fix typo (https://github.com/ansible-collections/ansible.posix/pull/198).
|
||||||
|
|
@ -473,7 +473,7 @@ def main():
|
||||||
_sshpass_pipe = os.pipe()
|
_sshpass_pipe = os.pipe()
|
||||||
cmd = ['sshpass', '-d' + to_native(_sshpass_pipe[0], errors='surrogate_or_strict')] + cmd
|
cmd = ['sshpass', '-d' + to_native(_sshpass_pipe[0], errors='surrogate_or_strict')] + cmd
|
||||||
if delay_updates:
|
if delay_updates:
|
||||||
cmd.append('--delay_updates')
|
cmd.append('--delay-updates')
|
||||||
cmd.append('-F')
|
cmd.append('-F')
|
||||||
if compress:
|
if compress:
|
||||||
cmd.append('--compress')
|
cmd.append('--compress')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue