17 lines
427 B
YAML
17 lines
427 B
YAML
- become: yes
|
|
hosts: all
|
|
name: server-install
|
|
tasks:
|
|
- name: Add the user 'kjuulh' and add it to 'sudo'
|
|
user:
|
|
name: kjuulh
|
|
group: sudo
|
|
- name:
|
|
authorized_key:
|
|
user: kjuulh
|
|
state: present
|
|
key: "{{ lookup('file', pub_key) }}"
|
|
- name: Wait for apt to unlock
|
|
become: yes
|
|
shell: while sudo fuser /var/lib/dpkg/lock >/dev/null >2&1; do sleep 5; done;
|