Fix bugs
This commit is contained in:
parent
7614575dbd
commit
b0af407737
|
@ -1 +1,3 @@
|
||||||
.vscode
|
.vscode
|
||||||
|
inventory
|
||||||
|
ansible.cfg
|
|
@ -40,3 +40,8 @@ argument_specs:
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
description: Boolean value indicating whether SSH key pairs should be generated for passwordless authentication.
|
description: Boolean value indicating whether SSH key pairs should be generated for passwordless authentication.
|
||||||
|
private_key_path:
|
||||||
|
type: str
|
||||||
|
required: no
|
||||||
|
default: /tmp
|
||||||
|
description: "Path to the private key. If not provided, the default path will be /tmp."
|
||||||
|
|
|
@ -16,17 +16,24 @@
|
||||||
|
|
||||||
- name: Determine key path
|
- name: Determine key path
|
||||||
set_fact:
|
set_fact:
|
||||||
key_path: "{{ (private_key_path | default('/tmp')) + '/id_rsa' }}"
|
key_path: "{{ (private_key_path | default('/tmp')) | regex_replace('/$','') }}/id_rsa"
|
||||||
|
|
||||||
- name: Generate SSH key pairs for local users
|
- name: Generate SSH key pairs for local users
|
||||||
community.crypto.openssh_keypair:
|
community.crypto.openssh_keypair:
|
||||||
path: "{{ key_path }}_{{ item.name }}"
|
path: "{{ key_path }}_{{ item.name }}"
|
||||||
loop: "{{ accounts_with_home }}"
|
loop: "{{ accounts_with_home }}"
|
||||||
when: not ansible_check_mode and item.passwordless | default(false) | bool
|
when: item.passwordless | default(false) | bool
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: true
|
run_once: true
|
||||||
become: false
|
become: false
|
||||||
|
|
||||||
|
- name: Ensure .ssh directory exists
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: "{{ item.home }}/.ssh"
|
||||||
|
state: directory
|
||||||
|
loop: "{{ accounts_with_home }}"
|
||||||
|
when: item.passwordless | default(false) | bool
|
||||||
|
|
||||||
- name: Copy public keys to authorized_keys for passwordless authentication
|
- name: Copy public keys to authorized_keys for passwordless authentication
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
content: "{{ lookup('file', key_path + '_' + item.name + '.pub') }}"
|
content: "{{ lookup('file', key_path + '_' + item.name + '.pub') }}"
|
||||||
|
|
Loading…
Reference in New Issue