mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-06-10 02:35:54 +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
16 lines
356 B
YAML
16 lines
356 B
YAML
---
|
|
- name: Clean up certificates
|
|
hosts: localhost
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: Run generate-certificates.sh
|
|
ansible.builtin.command: >
|
|
/bin/bash
|
|
generate-certificates.sh delete "{{ item }}"
|
|
args:
|
|
chdir: "{{ playbook_dir }}"
|
|
with_items:
|
|
- "{{ groups.ipaserver[0] }}"
|
|
- "{{ groups.ipareplicas[0] }}"
|