lab:ansible_virtualbox_autoboot_linux:generate_custom_unattended_ubuntu_install_iso
This is an old revision of the document!
Generate Custom Unattended Ubuntu Install ISO
This information is still in development
Features needed to add:
- remove the source-files directory when done building the ISO
- what steps require sudo, which breaks the working directory?
- test without the workaround
- investigate the network two minute delay getting IP address
- Starting with the template below, modify to your needs
- username: the user you want to use to manage the VMs
- ssh_key: the key from the previous step
- create_custom_iso.yml
--- - hosts: localhost # Run actions on the local machine connection: local gather_facts: false vars: workingdir: "{{ lookup('env','HOME') }}/ubuntu-autoinstall" username: ansible # use cat ~/.ssh/id_rsa.pub or generate to get your public key ssh_key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDKwEYxgppj+um+/W8LLxRpwZ2887IJirfJjFBkE30UeCZ0D1JS2RTMn4QEK1EAphByGxnmCruTL36aLMTO0FNH4IW+017/7wNY4JjRzRssZSMqmdjH4nhYV22JDIWh428p93FLsgqM+ud0Mj06KgJfa4BQtSvnR/p/4AXYzFTwzE+kyussIiOi+uT20AXNEIxk4ps39xhLGc6XNFo1xhtGvTZ9+Jx7AanVht090HuRuxNmOTd260mbeBJUKRF57d9tzZ68YRQiokIunkNF2skfJOZEUaIOWUoGGIWPMlEUEC0RhyW+7Ljmp7RbIOZ45CV0MYZEpKx4KQ61/CoMY4wKBCM90SwxJQwM3CZCseqcVnpFYKpFd6dnn0v0XsmINCU+y1RXYLfsOHEhLTm5WK9ERi5yr/1OjKkId+xZrf7D/v2soQdHsc82d+otbTDXzHYPduc2DfstJg5QFCECNrsEPRishAh2Lm2GJ3h0Pj20loyYeKWlUJpbLjd5A5Mnk9E= ansible@labbox" tasks: - name: Package requirements apt: pkg: - p7zip-full - xorriso - name: Create working directory file: path: "{{ workingdir }}" state: directory mode: "755" - name: Download Ubuntu ISO get_url: url: https://cdimage.ubuntu.com/ubuntu-server/jammy/daily-live/current/jammy-live-server-amd64.iso dest: "{{ workingdir }}/jammy-live-server-amd64.iso" force: false - name: Create source files directory file: path: "{{ workingdir }}/source-files" state: directory mode: "755" - name: Extract Ubuntu ISO command: "7z -y x {{ workingdir }}/jammy-live-server-amd64.iso -o{{ workingdir }}/source-files" changed_when: false - name: Add write permission to extracted files ansible.builtin.command: "chmod -R +w {{ workingdir }}/source-files" # Using chmod as Ansible (Python) can't handle the recursion depth on the Ubuntu ISO changed_when: false ## Start workaround issue with Ubuntu autoinstall ## Details of the issue and the workaround: https://askubuntu.com/questions/1394441/ubuntu-20-04-3-autoinstall-with-embedded-user-data-crashing-i-got-workaround - name: Extract the Packages.gz file on Ubuntu ISO ansible.builtin.command: "gunzip -f {{ workingdir }}/source-files/dists/jammy/main/binary-amd64/Packages.gz --keep" changed_when: false ## End workaround issue with Ubuntu autoinstall - name: Ensure BOOT directory not there file: path="{{ workingdir }}/BOOT" state=absent - name: Move [BOOT] out of ISO extraction directory ansible.builtin.command: "mv {{ workingdir }}/source-files/'[BOOT]' {{ workingdir }}/BOOT" changed_when: false - name: Edit grub.cfg to modify menu blockinfile: path: "{{ workingdir }}/source-files/boot/grub/grub.cfg" create: true block: | menuentry "Autoinstall Ubuntu Server" { set gfxpayload=keep linux /casper/vmlinuz quiet autoinstall ds=nocloud\;s=/cdrom/server/ --- initrd /casper/initrd } insertbefore: 'menuentry "Try or Install Ubuntu Server" {' state: present - name: Edit grub.cfg to set timeout to 1 second replace: path: "{{ workingdir }}/source-files/boot/grub/grub.cfg" regexp: '^(set timeout=30)$' replace: 'set timeout=5' - name: Create directory to store user-data and meta-data file: path: "{{ workingdir }}/source-files/server" state: directory mode: "755" - name: Create empty meta-data file in directory file: path: "{{ workingdir }}/source-files/server/meta-data" state: touch mode: "755" - name: Copy user-data file to directory using template template: src: ./user-data.j2 dest: "{{ workingdir }}/source-files/server/user-data" mode: "755" - name: Create custom ubuntu ISO command: "xorriso -as mkisofs -r \ -V 'Ubuntu 22.04 LTS AUTO (EFIBIOS)' \ -o ../ubuntu-22.04-autoinstall.iso \ --grub2-mbr ../BOOT/1-Boot-NoEmul.img \ -partition_offset 16 \ --mbr-force-bootable \ -append_partition 2 28732ac11ff8d211ba4b00a0c93ec93b ../BOOT/2-Boot-NoEmul.img \ -appended_part_as_gpt \ -iso_mbr_part_type a2a0d0ebe5b9334487c068b6b72699c7 \ -c '/boot.catalog' \ -b '/boot/grub/i386-pc/eltorito.img' \ -no-emul-boot -boot-load-size 4 -boot-info-table --grub2-boot-info \ -eltorito-alt-boot \ -e '--interval:appended_partition_2:::' \ -no-emul-boot \ ." args: chdir: "{{ workingdir }}/source-files/" changed_when: false - name: Copy custom ISO copy: src: "{{ workingdir }}/ubuntu-22.04-autoinstall.iso" dest: . - name: Delete working directory file: path="{{ workingdir }}" state=absent
NEXT: deploy_ubuntu_unattended_uninstall_image_to_oracle_virtualbox_using_ansible
lab/ansible_virtualbox_autoboot_linux/generate_custom_unattended_ubuntu_install_iso.1705438980.txt.gz ยท Last modified: 2024/01/16 21:03 by user