--- # Basic system configuration. All hardening should also be imported here. # Use --extra-vars="host=..." and specify a hostname in the inventory or # provide an ansible host group name. You can also just use "all" if you # want to ensure all systems are up to date on the configuration. - name: Setup a simple builder system with mock hosts: "{{ host }}" become: true # This is to try to avoid the handler issue in pre/post tasks handlers: - name: Import handleers ansible.builtin.import_tasks: handlers/main.yml pre_tasks: - name: Check if ansible cannot be run here ansible.builtin.stat: path: /etc/no-ansible register: no_ansible - name: Verify if we can run ansible ansible.builtin.assert: that: - "not no_ansible.stat.exists" success_msg: "We are able to run on this node" fail_msg: "/etc/no-ansible exists - skipping run on this node" tasks: - name: Install EPEL repository ansible.builtin.dnf: name: epel-release state: present tags: - packages - name: Enable the CRB repository community.general.ini_file: dest: /etc/yum.repos.d/rocky.repo section: crb option: enabled value: 1 owner: root group: root mode: '0644' when: ansible_distribution_major_version|int >= '9' - name: Install required builder packages ansible.builtin.dnf: name: - bzip2 - glibc-all-langpacks - htop - mock - rpm-build state: latest update_cache: false - name: Ensure users are part of mock group ansible.builtin.user: name: "{{ item }}" groups: mock append: true with_items: - neil - sherif - pgreco - label post_tasks: - name: Touching run file that ansible has ran here ansible.builtin.file: path: /var/log/ansible.run state: touch mode: '0644' owner: root group: root ...