10 lines
197 B
YAML
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 }}"
|