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

10 lines
197 B
YAML
Raw Normal View History

2023-11-20 02:35:20 +00:00
---
- name: create db-backup account
become: yes
user:
name: "{{ account.name }}"
comment: "{{ account.comment }}"
system: yes
password_lock: yes
home: "{{ account.home }}"