serverctl/infrastructure/create-resources/ansible/server-install.yml
kjuulh 170c5e0730
Some checks failed
continuous-integration/drone/push Build is failing
Add ansible to pipeline
2022-02-19 18:18:19 +01:00

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;