Correct dest_port to be of type int

This commit is contained in:
Toshio Kuratomi 2016-02-29 00:13:21 -08:00 committed by Matt Clay
parent 646d0e406d
commit cea1125d02

View file

@ -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),