Fix password hashing;Delete temporary user;Housekeeping
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-06-10 16:53:03 +02:00
parent 4257849ca4
commit f15485e7c2
5 changed files with 11 additions and 3 deletions

View File

@ -15,3 +15,6 @@
- name: Install ansible
import_tasks: ansible.yml
- name: Delete temporary users
import_tasks: users.yml

View File

@ -0,0 +1,5 @@
- name: Delete 'ubuntu' user
ansible.builtin.user:
name: ubuntu
state: absent
remove: yes