From 4cf7a11d5f7c31e252c2785cc5b5334ef865b73b Mon Sep 17 00:00:00 2001 From: Lukas Date: Fri, 26 Nov 2021 16:17:13 +0100 Subject: [PATCH] rewrite URLs to point to github add libvirtd service activation for hypervisor-based machines only --- blocks/base-hypervisor.cfg | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/blocks/base-hypervisor.cfg b/blocks/base-hypervisor.cfg index 28667d4..0b64eea 100644 --- a/blocks/base-hypervisor.cfg +++ b/blocks/base-hypervisor.cfg @@ -7,6 +7,8 @@ # What ? This kickstart file provides a basic, generic building block to build a virtualization host. +services --enabled="NetworkManager,libvirtd" + %packages --exclude-weakdeps # Beginning of the packages section. Does not include weak dependencies. qemu-kvm @@ -29,15 +31,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 # fetch custom script and make it executable -wget https://git.phyllo.me/home/PhyllomeOS/raw/branch/main/post/configure-vmm-and-desktop.sh -P /mnt/sysimage/usr/sbin/ +wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/configure-vmm-and-desktop.sh -P /mnt/sysimage/usr/sbin/ chmod +x /mnt/sysimage/usr/sbin/configure-vmm-and-desktop.sh # fetch custom script and make it executable -wget https://git.phyllo.me/home/PhyllomeOS/raw/branch/main/post/create-live-vm.sh -P /mnt/sysimage/usr/sbin/ +wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/create-live-vm.sh -P /mnt/sysimage/usr/sbin/ chmod +x /mnt/sysimage/usr/sbin/create-live-vm.sh # fetch custom script and make it executable -wget https://git.phyllo.me/home/PhyllomeOS/raw/branch/main/post/virtualization-tweaks-root-needed.sh -P /mnt/sysimage/usr/sbin/ +wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/virtualization-tweaks-root-needed.sh -P /mnt/sysimage/usr/sbin/ chmod +x /mnt/sysimage/usr/sbin/virtualization-tweaks-root-needed.sh # # Create new file /etc/systemd/system/postinstall.service using cat: