mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Correct dest_port to be of type int
This commit is contained in:
committed by
Matt Clay
parent
646d0e406d
commit
cea1125d02
@@ -263,7 +263,7 @@ def main():
|
||||
argument_spec = dict(
|
||||
src = dict(required=True),
|
||||
dest = dict(required=True),
|
||||
dest_port = dict(default=22),
|
||||
dest_port = dict(default=22, type='int'),
|
||||
delete = dict(default='no', type='bool'),
|
||||
private_key = dict(default=None),
|
||||
rsync_path = dict(default=None),
|
||||
|
||||
Reference in New Issue
Block a user