blob: 48318485b3fdb8f8aea767e7c8a799b01d956ca2 (
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
|
- name: add group qtip
become: true
group: name=qtip state=present
- 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 }}"
|