mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 08:13:08 +00:00
Change home and ssh_key_file to 'path' in user module
This commit is contained in:
committed by
Matt Clay
parent
08ad68984c
commit
5b32a299a5
@@ -278,12 +278,9 @@ class User(object):
|
||||
self.ssh_comment = module.params['ssh_key_comment']
|
||||
self.ssh_passphrase = module.params['ssh_key_passphrase']
|
||||
self.update_password = module.params['update_password']
|
||||
self.home = None
|
||||
self.home = module.params['home']
|
||||
self.expires = None
|
||||
|
||||
if module.params['home'] is not None:
|
||||
self.home = os.path.expanduser(module.params['home'])
|
||||
|
||||
if module.params['expires']:
|
||||
try:
|
||||
self.expires = time.gmtime(module.params['expires'])
|
||||
@@ -2028,7 +2025,7 @@ def main():
|
||||
group=dict(default=None, type='str'),
|
||||
groups=dict(default=None, type='str'),
|
||||
comment=dict(default=None, type='str'),
|
||||
home=dict(default=None, type='str'),
|
||||
home=dict(default=None, type='path'),
|
||||
shell=dict(default=None, type='str'),
|
||||
password=dict(default=None, type='str', no_log=True),
|
||||
login_class=dict(default=None, type='str'),
|
||||
@@ -2048,7 +2045,7 @@ def main():
|
||||
generate_ssh_key=dict(type='bool'),
|
||||
ssh_key_bits=dict(default=ssh_defaults['bits'], type='str'),
|
||||
ssh_key_type=dict(default=ssh_defaults['type'], type='str'),
|
||||
ssh_key_file=dict(default=None, type='str'),
|
||||
ssh_key_file=dict(default=None, type='path'),
|
||||
ssh_key_comment=dict(default=ssh_defaults['comment'], type='str'),
|
||||
ssh_key_passphrase=dict(default=None, type='str', no_log=True),
|
||||
update_password=dict(default='always',choices=['always','on_create'],type='str'),
|
||||
|
||||
Reference in New Issue
Block a user