Move ISO files to files/images instead of build/images

This commit is contained in:
Khue Doan 2021-06-12 18:07:24 +07:00
parent 3cc673d274
commit fb54a09ff1
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
build/
terraform-*-tmp-*/
*.iso
*.log
.terraform*
backend.tfvars

View File

@ -9,13 +9,13 @@
state: directory
loop:
- "{{ role_path }}/build"
- "{{ role_path }}/build/images"
- "{{ role_path }}/files/images"
- "{{ role_path }}/build/mnt"
- name: Download ISO
get_url:
url: "{{ iso_url }}"
dest: "{{ role_path }}/build/images/{{ iso_file_name }}"
dest: "{{ role_path }}/files/images/{{ iso_file_name }}"
checksum: "{{ iso_checksum }}"
delegate_to: localhost
register: iso