Files @ 580b2e4cb9a3
Branch filter:

Location: majic-ansible-roles/roles/preseed/tasks/main.yml

branko
MAR-218: Bump Ansible version to 10.4.x:

- Fix the requirements file not depending on the patch release.
- Bump all metadata to reference the new version.
---

- name: Create directory for storing preseed configurations
  ansible.builtin.file:
    path: "{{ preseed_directory }}"
    mode: "0750"
    state: directory

- name: Create preseed configuration file
  ansible.builtin.template:
    src: "preseed.cfg.j2"
    dest: "{{ preseed_directory }}/{{ item }}.cfg"
    mode: "0640"
  when: item != "localhost"
  with_items: "{{ groups['all'] }}"

- name: Explicitly run all handlers
  ansible.builtin.import_tasks: ../handlers/main.yml
  when: "run_handlers | default(False) | bool()"
  tags:
    - handlers