mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-24 04:49:26 +00:00
bitwarden
This commit is contained in:
parent
9cbec713ad
commit
f2f6328a14
23
playbooks/distrib_ssh_keys.yml
Normal file
23
playbooks/distrib_ssh_keys.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
- hosts: "{{ hosts }}"
|
||||||
|
|
||||||
|
become: yes
|
||||||
|
tasks:
|
||||||
|
|
||||||
|
# Deploy SSH Key
|
||||||
|
# --
|
||||||
|
- name: install public keys
|
||||||
|
ansible.posix.authorized_key:
|
||||||
|
user: "{{ user }}"
|
||||||
|
state: present
|
||||||
|
key: "{{ lookup('file', new_ssh_key_file) }}"
|
||||||
|
|
||||||
|
|
||||||
|
# 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
|
Loading…
x
Reference in New Issue
Block a user