update auf 12.1.ß

This commit is contained in:
Alexander Gabriel 2023-07-31 22:26:26 +02:00
parent bf59f8b1ef
commit 80353518f2
1 changed files with 6 additions and 6 deletions

View File

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