updated to debian 11.3.0

This commit is contained in:
Alexander Gabriel 2022-06-20 21:15:13 +02:00
parent 82b0b236a1
commit 4ae019a512

View File

@ -16,8 +16,8 @@
- name: Download ISO Image
get_url:
url: "https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-11.2.0-amd64-netinst.iso"
dest: "/opt/ansiblepackages/debianunattended/debian-11.2.0-amd64-netinst.iso"
url: "https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-11.3.0-amd64-netinst.iso"
dest: "/opt/ansiblepackages/debianunattended/debian-11.3.0-amd64-netinst.iso"
delegate_to: localhost
- name: delete old stuff
@ -27,7 +27,7 @@
delegate_to: localhost
- name: extract ISO Image
command: xorriso -osirrox on -indev /opt/ansiblepackages/debianunattended/debian-11.2.0-amd64-netinst.iso -extract / /opt/ansiblepackages/debianunattended/isofiles/
command: xorriso -osirrox on -indev /opt/ansiblepackages/debianunattended/debian-11.3.0-amd64-netinst.iso -extract / /opt/ansiblepackages/debianunattended/isofiles/
args:
creates: /opt/ansiblepackages/debianunattended/isofiles/install.amd/initrd.gz
delegate_to: localhost
@ -124,5 +124,5 @@
delegate_to: localhost
- name: genisoimage
command: "genisoimage -r -J -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o {{ playbook_dir }}/debian-11.2.0-amd64-netinst-unattended-{{ inventory_hostname }}.iso /opt/ansiblepackages/debianunattended/isofiles"
command: "genisoimage -r -J -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o {{ playbook_dir }}/debian-11.3.0-amd64-netinst-unattended-{{ inventory_hostname }}.iso /opt/ansiblepackages/debianunattended/isofiles"
delegate_to: localhost