ansible/check_user_adexl_exists.yml

14 lines
269 B
YAML

---
- hosts: all
become: true
tasks:
- name: Benutzer adexl prüfen und ggf. anlegen
user:
name: adexl
state: present
shell: /bin/bash
groups: users
append: yes
register: user_check
ignore_errors: true