mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-12-04 14:24:14 +01:00
26 lines
515 B
YAML
26 lines
515 B
YAML
---
|
|
- hosts: all
|
|
|
|
become: yes
|
|
tasks:
|
|
|
|
# Installs public key
|
|
# --
|
|
#
|
|
- name: install public keys
|
|
ansible.posix.authorized_key:
|
|
user: "{{ lookup('env','USER') }}"
|
|
state: present
|
|
key: "{{ lookup('file', '~/.ssh/id_rsa.pub') }}"
|
|
|
|
# (Optional)
|
|
# Set all sudoers to no password
|
|
# --
|
|
- name: change sudoers file
|
|
lineinfile:
|
|
path: /etc/sudoers
|
|
state: present
|
|
regexp: '^%sudo'
|
|
line: '%sudo ALL=(ALL) NOPASSWD: ALL'
|
|
validate: /usr/sbin/visudo -cf %s
|