mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-01-10 08:18:24 +01:00
18 lines
502 B
YAML
18 lines
502 B
YAML
---
|
|
- name: add ssh key
|
|
hosts: "{{ my_hosts | d([]) }}"
|
|
become: true
|
|
tasks:
|
|
- name: install public keys
|
|
ansible.posix.authorized_key:
|
|
user: "{{ lookup('env','USER') }}"
|
|
state: present
|
|
key: "{{ lookup('file', '~/.ssh/id_rsa.pub') }}"
|
|
- name: change sudoers file
|
|
ansible.builtin.lineinfile:
|
|
path: /etc/sudoers
|
|
state: present
|
|
regexp: '^%sudo'
|
|
line: '%sudo ALL=(ALL) NOPASSWD: ALL'
|
|
validate: /usr/sbin/visudo -cf %s
|