mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
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
24 lines
607 B
YAML
24 lines
607 B
YAML
---
|
|
- name: Include create_users_json.yml
|
|
ansible.builtin.import_playbook: create_users_json.yml
|
|
|
|
- name: Test users present slice
|
|
hosts: ipaserver
|
|
become: true
|
|
gather_facts: false
|
|
|
|
vars:
|
|
slice_size: 500
|
|
tasks:
|
|
- name: Include users.json
|
|
ansible.builtin.include_vars:
|
|
file: users.json # noqa 505
|
|
- name: Size of users slice.
|
|
ansible.builtin.debug:
|
|
msg: "{{ users | length }}"
|
|
- name: Users present
|
|
ipauser:
|
|
ipaadmin_password: SomeADMINpassword
|
|
users: "{{ users[item:item+slice_size] }}"
|
|
loop: "{{ range(0,users | length, slice_size) | list }}"
|