You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.yml 323B

6 years ago
6 years ago
6 years ago
6 years ago
1234567891011121314151617
  1. ---
  2. # - import_tasks: setup.yml
  3. - name: directory
  4. file:
  5. state: directory
  6. path: "{{debian_installer_directory}}"
  7. - import_tasks: preseed.yml
  8. - import_tasks: installer.yml
  9. - include: method/kexec.yml
  10. when: debian_installer_method == "kexec"
  11. - include: method/iso.yml
  12. when: debian_installer_method == "iso"