Use type='path' rather than str, so path is expanded correctly

This commit is contained in:
Michael Scherer 2016-05-08 11:33:54 +02:00 committed by Matt Clay
parent f9e516ce1b
commit ea6a2bfd95

View file

@ -85,9 +85,7 @@ def enforce_state(module, params):
host = params["name"]
key = params.get("key",None)
port = params.get("port",None)
#expand the path parameter; otherwise module.add_path_info
#(called by exit_json) unhelpfully says the unexpanded path is absent.
path = os.path.expanduser(params.get("path"))
path = params.get("path")
state = params.get("state")
#Find the ssh-keygen binary
sshkeygen = module.get_bin_path("ssh-keygen",True)
@ -240,7 +238,7 @@ def main():
argument_spec = dict(
name = dict(required=True, type='str', aliases=['host']),
key = dict(required=False, type='str'),
path = dict(default="~/.ssh/known_hosts", type='str'),
path = dict(default="~/.ssh/known_hosts", type='path'),
state = dict(default='present', choices=['absent','present']),
),
supports_check_mode = True