diff --git a/slococo/playground/roles/local_accounts/tasks/main.yml b/slococo/playground/roles/local_accounts/tasks/main.yml index 714c159..97440be 100644 --- a/slococo/playground/roles/local_accounts/tasks/main.yml +++ b/slococo/playground/roles/local_accounts/tasks/main.yml @@ -7,7 +7,6 @@ expires: "{{ (((item.expiry_date + ' 00:00:00') | to_datetime).strftime('%s')) if item.expiry_date is defined else omit }}" home: "{{ item.home | default(omit) }}" groups: "{{ item.groups | default(omit) }}" - # generate_ssh_key: "{{ item.passwordless | default(omit) }}" loop: "{{ accounts }}" - name: Add home @@ -15,41 +14,6 @@ accounts_with_home: "{{ accounts_with_home | default([]) + [item | combine({'home': item.home | default('/home/' + item.name)})] }}" loop: "{{ accounts }}" -# - name: Read public keys from id_rsa.pub files -# ansible.builtin.slurp: -# src: "{{ item.home }}/.ssh/id_rsa.pub" -# loop: "{{ accounts_with_home }}" -# register: public_keys_result -# when: not ansible_check_mode and item.passwordless | default(false) | bool - -# - name: Add public keys to authorized_keys for passwordless authentication -# ansible.builtin.copy: -# content: "{{ item.content | b64decode }}" -# dest: "{{ item.item.home }}/.ssh/authorized_keys" -# owner: "{{ item.item.name }}" -# group: "{{ item.item.name }}" -# mode: '0600' -# loop: "{{ public_keys_result.results }}" -# when: not ansible_check_mode and item.item.passwordless | default(false) | bool - -# - name: Fetch private key from remote host to Ansible control node -# ansible.builtin.fetch: -# src: "{{ item.home }}/.ssh/id_rsa" -# dest: "{{ private_key_path }}/{{ item.name }}_id_rsa" -# flat: yes -# loop: "{{ accounts_with_home }}" -# when: not ansible_check_mode and item.passwordless | default(false) | bool - -# - name: Set permissions for fetched private key file -# ansible.builtin.file: -# path: "{{ private_key_path }}/{{ item.name }}_id_rsa" -# mode: '0600' -# loop: "{{ accounts_with_home }}" -# when: not ansible_check_mode and item.passwordless | default(false) | bool -# delegate_to: localhost -# run_once: true -# become: false - - name: Determine key path set_fact: key_path: "{{ (private_key_path | default('/tmp')) + '/id_rsa' }}"