blob: b1b5be9b1e1bc37dac0cd075cb4a5072999c4bf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
- name: add group qtip
become: true
group: name=qtip state=present
- name: add qtip to sudoers without password
become: true
file:
src: sudoers.d-qtip
dest: /etc/sudoers.d/50-qtip
mode: 0440
- name: add users for ssh access
become: true
user:
name: "{{ item.name }}"
comment: "{{ item.comment }}"
groups: "qtip"
append: yes
with_items: "{{ users }}"
- name: create .ssh directory
become: true
file:
path: "/home/{{ item.name }}/.ssh"
state: directory
owner: "{{ item.name }}"
group: "{{ item.name }}"
mode: 0700
with_items: "{{ users }}"
- name: authorize public key
become: true
copy:
src: "{{ item.name }}.authorized_keys"
dest: "/home/{{ item.name }}/.ssh/authorized_keys"
owner: "{{ item.name }}"
group: "{{ item.name }}"
mode: 0600
with_items: "{{ users }}"
|