summaryrefslogtreecommitdiff
path: root/roles/installer/debian/preseed/tasks
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2020-07-11 01:42:07 +0200
committerChristian Pointner <equinox@spreadspace.org>2020-07-11 01:42:07 +0200
commitc188d4ac1713506c3028b4501730713cfda0ed36 (patch)
treee056a15d599981f963f20365848d4032aa792191 /roles/installer/debian/preseed/tasks
parentpreseed/partman: nicer error text for not-enough-space (diff)
parentopenbsd installer: improve image verification (diff)
Merge branch 'topic/debian-installer-verification'
Diffstat (limited to 'roles/installer/debian/preseed/tasks')
-rw-r--r--roles/installer/debian/preseed/tasks/main.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/installer/debian/preseed/tasks/main.yml b/roles/installer/debian/preseed/tasks/main.yml
index 2934ca1b..2d229aa8 100644
--- a/roles/installer/debian/preseed/tasks/main.yml
+++ b/roles/installer/debian/preseed/tasks/main.yml
@@ -2,8 +2,8 @@
- name: Copy initramfs into position
copy:
remote_src: yes
- src: "{{ installer_path | mandatory }}/{{ install_distro }}-{{ install_codename }}/{{ hostvars[install_hostname].install_cooked.arch | default('amd64') }}/initrd.gz"
- dest: "{{ preseed_tmpdir }}/initrd.preseed.gz"
+ src: "{{ preseed_orig_initrd }}"
+ dest: "{{ preseed_tmpdir }}/initrd.{{ install_hostname }}.gz"
- name: Generate preseed file
template:
@@ -42,7 +42,7 @@
NamePolicy={{ preseed_force_net_ifnames_policy }}
- name: Inject files into initramfs
- shell: cpio -H newc -o | gzip -9 >> 'initrd.preseed.gz'
+ shell: cpio -H newc -o | gzip -9 >> 'initrd.{{ install_hostname }}.gz'
args:
chdir: "{{ preseed_tmpdir }}"
stdin: |