Different aproche for ISO mounting

This commit is contained in:
Sandwich 2024-10-30 19:30:12 +01:00
parent 4d242ad987
commit 173ecd299b
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@
ansible.builtin.lineinfile:
path: /mnt/etc/fstab
regexp: '^.*\/dvd.*$'
line: "{{ '/dev/loop0' if hypervisor == 'vmware' else '/dev/sr0' }} /usr/local/install/redhat/dvd iso9660 ro,relatime,nojoliet,check=s,map=n 0 0"
line: "/dev/sr0 /usr/local/install/redhat/dvd iso9660 ro,relatime,nojoliet,check=s,map=n 0 0"
state: present
backrefs: true

View File

@ -108,7 +108,7 @@
- name: Mount RHEL ISO
ansible.posix.mount:
src: /dev/sr2
src: "{{ '/dev/sr1' if hypervisor == 'vmware' else '/dev/sr2' }}"
path: /usr/local/install/redhat/dvd
fstype: iso9660
opts: "ro,loop"

View File

@ -28,7 +28,7 @@
type: iso
iso_path: "{{ boot_iso }}"
- controller_number: 0
unit_number: 2
unit_number: 1
controller_type: sata
state: present
type: iso