#!/bin/sh # This script generates Debian images for OpenNebula. # # Test image locally (without network) with: # qemu-system-x86_64 -enable-kvm -m 1G -drive file=$IMAGE,format=qcow2 set -e set -x # XXX: Handle command-line arguments? IMAGE_PATH=arch-$(date --iso-8601).img.qcow2 IMAGE_SIZE=10G NBD_DEVICE=/dev/nbd0 ONE_CONTEXT_VERSION=6.8.1 ONE_CONTEXT_SOURCE_ARCHIVE="https://github.com/OpenNebula/one-apps/archive/refs/tags/v${ONE_CONTEXT_VERSION:?}.tar.gz" cleanup() { # The order here is important. umount /mnt/dev/pts 2>/dev/null || true umount /mnt/dev/shm 2>/dev/null || true umount /mnt/dev 2>/dev/null || true umount /mnt/proc 2>/dev/null || true umount /mnt/run 2>/dev/null || true umount /mnt/sys 2>/dev/null || true umount /mnt/boot 2>/dev/null || true umount /mnt 2>/dev/null || true qemu-nbd --disconnect "$NBD_DEVICE" || true } run_root() { chroot /mnt /usr/bin/env \ PATH=/sbin:/usr/sbin:/bin:/usr/bin \ sh -c "$*" } if [ "$(whoami)" != 'root' ]; then echo "This script must be run as root." >&2 exit 1 fi if [ "$(lsb_release --short --id)" != "Arch" ]; then echo "WARNING: this script has been designed to run on Arch Linux." >&2 echo "WARNING: Not running Arch. Giving you 5 seconds to abort." >&2 sleep 5 fi # Create base QCOW2 image. qemu-img create -f qcow2 "$IMAGE_PATH" "$IMAGE_SIZE" modprobe nbd max_part=16 qemu-nbd --connect="$NBD_DEVICE" "$IMAGE_PATH" # Wait for qemu-nbd to settle. sleep 1 # Don't forget to cleanup, even if the script crash. trap cleanup EXIT # Create partition table, format partitions. sfdisk --no-reread "$NBD_DEVICE" < /mnt/etc/hosts << EOF 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 EOF # Configure package sources and update package index. cat > /mnt/etc/pacman.d/mirrorlist << EOF ## ## Arch Linux repository mirrorlist ## Generated on 2024-03-07 ## ## Switzerland Server = http://pkg.adfinis.com/archlinux/\$repo/os/\$arch Server = https://pkg.adfinis.com/archlinux/\$repo/os/\$arch Server = http://mirror.init7.net/archlinux/\$repo/os/\$arch Server = https://mirror.init7.net/archlinux/\$repo/os/\$arch Server = http://mirror.metanet.ch/archlinux/\$repo/os/\$arch Server = https://mirror.metanet.ch/archlinux/\$repo/os/\$arch Server = http://mirror.puzzle.ch/archlinux/\$repo/os/\$arch Server = https://mirror.puzzle.ch/archlinux/\$repo/os/\$arch Server = https://mirror.ungleich.ch/mirror/packages/archlinux/\$repo/os/\$arch EOF run_root pacman -Syu --noconfirm # Initalize base services. run_root systemd-machine-id-setup # Generate fstab file. boot_uuid=$(blkid --match-tag UUID --output value "${NBD_DEVICE}p1") root_uuid=$(blkid --match-tag UUID --output value "${NBD_DEVICE}p2") cat >>/mnt/etc/fstab < /mnt/etc/hostname # Make sure everything is written to disk before exiting. sync