mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-02 08:43:10 +00:00
Create SSH Keys always after creating $HOME
This commit is contained in:
committed by
Matt Clay
parent
ad9379ad7d
commit
aca24caa19
@@ -1917,6 +1917,16 @@ def main():
|
||||
if user.groups is not None:
|
||||
result['groups'] = user.groups
|
||||
|
||||
# handle missing homedirs
|
||||
info = user.user_info()
|
||||
if user.home is None:
|
||||
user.home = info[5]
|
||||
if not os.path.exists(user.home) and user.createhome:
|
||||
if not module.check_mode:
|
||||
user.create_homedir(user.home)
|
||||
user.chown_homedir(info[2], info[3], user.home)
|
||||
result['changed'] = True
|
||||
|
||||
# deal with ssh key
|
||||
if user.sshkeygen:
|
||||
(rc, out, err) = user.ssh_key_gen()
|
||||
@@ -1932,16 +1942,6 @@ def main():
|
||||
result['ssh_key_file'] = user.get_ssh_key_path()
|
||||
result['ssh_public_key'] = user.get_ssh_public_key()
|
||||
|
||||
# handle missing homedirs
|
||||
info = user.user_info()
|
||||
if user.home is None:
|
||||
user.home = info[5]
|
||||
if not os.path.exists(user.home) and user.createhome:
|
||||
if not module.check_mode:
|
||||
user.create_homedir(user.home)
|
||||
user.chown_homedir(info[2], info[3], user.home)
|
||||
result['changed'] = True
|
||||
|
||||
module.exit_json(**result)
|
||||
|
||||
# import module snippets
|
||||
|
||||
Reference in New Issue
Block a user