blob: 30b0f19011b78bb56cee8bbb2fdb568b383a5b15 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
- name: fetch and generate usb installer
hosts: "{{ install_hostnames }}"
connection: local
gather_facts: no
vars_prompt:
- name: usb_install_path
prompt: Where is the USB installation medium mounted to?
private: no
roles:
- role: installer/debian/usb
installer_base_path: "{{ global_cache_dir }}/debian-installer"
installer_keyrings_path: "{{ global_files_dir }}/common/keyrings"
|