Files @ 5ee6fc8d3513
Branch filter:

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

branko
MAR-218: Force handler execution during testing for consistency:

- Otherwise it can easily happen that some handlers never run, leaving
the machine in inconsistent state until they are run by hand.
---

- 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.include_tasks: ../handlers/main.yml
  when: "run_handlers | default(False) | bool()"
  tags:
    - handlers