diff --git a/ingredients/base-hypervisor.cfg b/ingredients/base-hypervisor.cfg index 5063a52..e2a1c15 100644 --- a/ingredients/base-hypervisor.cfg +++ b/ingredients/base-hypervisor.cfg @@ -7,7 +7,7 @@ # What ? This kickstart file provides a basic, generic building block to build a virtualization host. -services --enabled="NetworkManager,libvirtd" +services --enabled="NetworkManager,libvirtd" # Without libvirtd here, it appears it won't automatically start %packages --exclude-weakdeps # Beginning of the packages section. Does not include weak dependencies. @@ -17,9 +17,9 @@ libvirt-daemon-config-network libvirt-daemon-kvm virt-install virt-top -libguestfs-tools -python3-libguestfs -guestfs-tools # Complementary tools useful for interacting with vith guest systems +libguestfs-tools # Complementary tools useful for interacting with vith guest systems. Could probablby be removed for production-use +python3-libguestfs # Complementary tools useful for interacting with vith guest systems. Could probablby be removed for production-use +guestfs-tools # Complementary tools useful for interacting with vith guest systems. Could probablby be removed for production-use %end # End of the packages section @@ -36,11 +36,15 @@ mkdir /mnt/sysimage/var/lib/libvirt/iso # Create a directory to store iso images wget https://boot.netboot.xyz/ipxe/netboot.xyz.iso -P /mnt/sysimage/var/lib/libvirt/iso/ # fetch netboot.xyz iso and store it to the newly created iso directory # fetch custom script and make it executable -wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/create-user-vms.sh -P /mnt/sysimage/usr/sbin/ +wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/create-user-vms.sh -P /mnt/sysimage/usr/sbin/ chmod +x /mnt/sysimage/usr/sbin/create-user-vms.sh # fetch custom script and make it executable -wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/virtualization-tweaks-root-needed.sh -P /mnt/sysimage/usr/sbin/ +wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/create-system-vms.sh -P /mnt/sysimage/usr/sbin/ +chmod +x /mnt/sysimage/usr/sbin/create-system-vms.sh + +# fetch custom script and make it executable +wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/virtualization-tweaks-root-needed.sh -P /mnt/sysimage/usr/sbin/ chmod +x /mnt/sysimage/usr/sbin/virtualization-tweaks-root-needed.sh %end # End of the %post section