role-utilizadores-ansol #7
@ -4,6 +4,7 @@
|
|||||||
become: true
|
become: true
|
||||||
roles:
|
roles:
|
||||||
- fail2ban
|
- fail2ban
|
||||||
|
- utilizadores
|
||||||
tasks:
|
tasks:
|
||||||
- name: PREPS -- install needed packages
|
- name: PREPS -- install needed packages
|
||||||
become: true
|
become: true
|
||||||
|
6
roles/utilizadores/defaults/main.yml
Normal file
6
roles/utilizadores/defaults/main.yml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
utilizadores:
|
||||||
|
- name: tc
|
||||||
|
github: tcarrondo
|
||||||
|
- name: hugopeixoto
|
||||||
|
github: hugopeixoto
|
35
roles/utilizadores/tasks/main.yml
Normal file
35
roles/utilizadores/tasks/main.yml
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
---
|
||||||
|
# Grupo ansoladm
|
||||||
|
|
||||||
|
- name: Create group 'ansoladm'
|
||||||
|
group:
|
||||||
|
name: ansoladm
|
||||||
|
state: present
|
||||||
|
- name: 'Allow ansoladm users to sudo without a password'
|
||||||
|
lineinfile:
|
||||||
|
dest: '/etc/sudoers'
|
||||||
|
state: 'present'
|
||||||
|
regexp: '^%ansoladm'
|
||||||
|
line: '%ansoladm ALL=(ALL) NOPASSWD: ALL'
|
||||||
|
|
||||||
|
# Utilizadores e chaves
|
||||||
|
|
||||||
|
- name: Add user(s)
|
||||||
|
become: true
|
||||||
|
user:
|
||||||
|
name: '{{ item.name }}'
|
||||||
|
shell: /bin/bash
|
||||||
|
groups:
|
||||||
|
- ansoladm
|
||||||
|
- lxd
|
||||||
|
append: yes
|
||||||
|
with_items:
|
||||||
|
- '{{utilizadores}}'
|
||||||
|
- name: Add authorized key(s)
|
||||||
|
become: true
|
||||||
|
authorized_key:
|
||||||
|
user: '{{ item.name }}'
|
||||||
|
state: present
|
||||||
|
key: https://github.com/{{ item.github }}.keys
|
||||||
|
with_items:
|
||||||
|
- '{{utilizadores}}'
|
Loading…
Reference in New Issue
Block a user