--- - name: Create overrides if we're an IPA Replica include_vars: "{{ item }}" with_first_found: - "chronyserver.yml" when: "'chronyservers' in group_names" - name: Install chrony packages ansible.builtin.dnf: name: "{{ chrony_packages }}" state: present - name: Fix permissions for chrony home directory ansible.builtin.file: path: "{{ chrony_homedir }}" mode: 0750 state: directory - name: Deploy configuration ansible.builtin.template: src: chrony.conf.j2 dest: "{{ chrony_config_file }}" owner: "{{ chrony_owner }}" group: "{{ chrony_group }}" mode: "{{ chrony_mode }}" notify: "chrony service restart" - name: Manage the state of service ansible.builtin.systemd: name: "{{ chrony_service_name }}" state: "{{ chrony_service_state }}" enabled: "{{ chrony_service_enabled }}" ...