ansible/roles/db-backup/tasks/account.yml

10 lines
197 B
YAML

---
- name: create db-backup account
become: yes
user:
name: "{{ account.name }}"
comment: "{{ account.comment }}"
system: yes
password_lock: yes
home: "{{ account.home }}"