update to 11.5.0

This commit is contained in:
Alexander Gabriel 2022-11-28 23:04:14 +01:00
parent 6328e907ae
commit d6cfa28eee

View File

@ -1,7 +1,7 @@
--- ---
- name: check if iso exists - name: check if iso exists
stat: stat:
path: "{{ playbook_dir }}/debian-11.4.0-amd64-netinst-unattended-{{ inventory_hostname }}.iso" path: "{{ playbook_dir }}/debian-11.5.0-amd64-netinst-unattended-{{ inventory_hostname }}.iso"
delegate_to: localhost delegate_to: localhost
register: iso_exists register: iso_exists
@ -26,8 +26,8 @@
- name: Download ISO Image - name: Download ISO Image
get_url: get_url:
url: "https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-11.4.0-amd64-netinst.iso" url: "https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-11.5.0-amd64-netinst.iso"
dest: "/opt/ansiblepackages/debianunattended/debian-11.4.0-amd64-netinst.iso" dest: "/opt/ansiblepackages/debianunattended/debian-11.5.0-amd64-netinst.iso"
delegate_to: localhost delegate_to: localhost
- name: delete old stuff - name: delete old stuff
@ -37,7 +37,7 @@
delegate_to: localhost delegate_to: localhost
- name: extract ISO Image - name: extract ISO Image
command: "xorriso -osirrox on -indev /opt/ansiblepackages/debianunattended/debian-11.4.0-amd64-netinst.iso -extract / /opt/ansiblepackages/debianunattended/{{ inventory_hostname }}/isofiles/" command: "xorriso -osirrox on -indev /opt/ansiblepackages/debianunattended/debian-11.5.0-amd64-netinst.iso -extract / /opt/ansiblepackages/debianunattended/{{ inventory_hostname }}/isofiles/"
args: args:
creates: "/opt/ansiblepackages/debianunattended/{{ inventory_hostname }}/isofiles/install.amd/initrd.gz" creates: "/opt/ansiblepackages/debianunattended/{{ inventory_hostname }}/isofiles/install.amd/initrd.gz"
delegate_to: localhost delegate_to: localhost
@ -147,5 +147,5 @@
delegate_to: localhost delegate_to: localhost
- name: genisoimage - 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.4.0-amd64-netinst-unattended-{{ inventory_hostname }}.iso /opt/ansiblepackages/debianunattended/{{ inventory_hostname }}/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.5.0-amd64-netinst-unattended-{{ inventory_hostname }}.iso /opt/ansiblepackages/debianunattended/{{ inventory_hostname }}/isofiles"
delegate_to: localhost delegate_to: localhost