Files
ansible-freeipa/tests/user/test_user_random.yml
Thomas Woerner 198298b2d0 user: Use FQCN for ansible.builtin
Use Fully Qualified Collection Name (FQCN) for ansible builtins. This is
ansible.builtin.set_fact instead of set_fact for example and aplies for
all actions that are part of ansible.builtin.

All the replaced ansible.builtins:
  assert, command, copy, debug, fail, fetch, file, import_playbook,
  import_tasks, include_role, include_tasks, include_vars, package,
  set_fact, shell, slurp, stat, systemd
2022-12-20 13:55:03 +01:00

73 lines
1.8 KiB
YAML

---
- name: Test ipauser random password generation
hosts: ipaserver
become: true
tasks:
- name: Users user1 and user2 absent
ipauser:
ipaadmin_password: SomeADMINpassword
name:
- user1
- user2
state: absent
- name: User user1 present with random password
ipauser:
ipaadmin_password: SomeADMINpassword
name: user1
first: first1
last: last1
random: yes
update_password: on_create
register: ipauser
failed_when: not ipauser.changed or
ipauser.user.randompassword is not defined or
ipauser.failed
- name: Print generated random password
ansible.builtin.debug:
var: ipauser.user.randompassword
- name: User user1 absent
ipauser:
ipaadmin_password: SomeADMINpassword
name:
- user1
state: absent
- name: Users user1 and user2 present with random password
ipauser:
ipaadmin_password: SomeADMINpassword
users:
- name: user1
first: first1
last: last1
random: yes
- name: user2
first: first2
last: last2
random: yes
update_password: on_create
register: ipauser
failed_when: not ipauser.changed or
ipauser.user.user1.randompassword is not defined or
ipauser.user.user2.randompassword is not defined or
ipauser.failed
- name: Print generated random password for user1
ansible.builtin.debug:
var: ipauser.user.user1.randompassword
- name: Print generated random password for user2
ansible.builtin.debug:
var: ipauser.user.user2.randompassword
- name: Users user1 and user2 absent
ipauser:
ipaadmin_password: SomeADMINpassword
name:
- user1
- user2
state: absent