mirror of
https://github.com/PhyllomeOS/phyllomeos.git
synced 2024-12-22 05:05:17 +00:00
update paths for post-install scripts
change from kexec to shutdown
This commit is contained in:
parent
67cb44ed7a
commit
750aa50f5a
@ -8,8 +8,8 @@ keyboard --xlayouts='ch (fr)'
|
|||||||
rootpw --iscrypted --lock locked
|
rootpw --iscrypted --lock locked
|
||||||
# System language
|
# System language
|
||||||
lang en_US.UTF-8
|
lang en_US.UTF-8
|
||||||
# Reboot after installation
|
# Shutdown after installation
|
||||||
reboot --kexec
|
shutdown
|
||||||
# Use text mode install
|
# Use text mode install
|
||||||
text
|
text
|
||||||
# Network information
|
# Network information
|
||||||
@ -190,16 +190,24 @@ 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
|
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
|
# fetch custom script and make it executable
|
||||||
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/create-user-vms.sh -P /mnt/sysimage/usr/sbin/
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/create-generic-vm-virtio-spice.sh -P /mnt/sysimage/usr/local/bin/
|
||||||
chmod +x /mnt/sysimage/usr/sbin/create-user-vms.sh
|
chmod +x /mnt/sysimage/usr/local/bin/create-generic-vm-virtio-spice.sh
|
||||||
|
|
||||||
# fetch custom script and make it executable
|
# fetch custom script and make it executable
|
||||||
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/create-system-vms.sh -P /mnt/sysimage/usr/sbin/
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/deploy-minimal-server.sh -P /mnt/sysimage/usr/local/bin/
|
||||||
chmod +x /mnt/sysimage/usr/sbin/create-system-vms.sh
|
chmod +x /mnt/sysimage/usr/local/bin/deploy-minimal-server.sh
|
||||||
|
|
||||||
# fetch custom script and make it executable
|
# 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/
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/deploy-minimal-workstation.sh -P /mnt/sysimage/usr/local/bin/
|
||||||
chmod +x /mnt/sysimage/usr/sbin/virtualization-tweaks-root-needed.sh
|
chmod +x /mnt/sysimage/usr/local/bin/deploy-minimal-workstation.sh
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/deploy-phyllome-desktop.sh -P /mnt/sysimage/usr/local/bin/
|
||||||
|
chmod +x /mnt/sysimage/usr/local/bin/deploy-phyllome-desktop.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/local/bin/
|
||||||
|
chmod +x /mnt/sysimage/usr/local/bin/virtualization-tweaks-root-needed.sh
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ keyboard --xlayouts='ch (fr)'
|
|||||||
rootpw --iscrypted --lock locked
|
rootpw --iscrypted --lock locked
|
||||||
# System language
|
# System language
|
||||||
lang en_US.UTF-8
|
lang en_US.UTF-8
|
||||||
# Reboot after installation
|
# Shutdown after installation
|
||||||
reboot --kexec
|
shutdown
|
||||||
# Use text mode install
|
# Use text mode install
|
||||||
text
|
text
|
||||||
# Network information
|
# Network information
|
||||||
@ -58,16 +58,24 @@ 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
|
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
|
# fetch custom script and make it executable
|
||||||
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/create-user-vms.sh -P /mnt/sysimage/usr/sbin/
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/create-generic-vm-virtio-spice.sh -P /mnt/sysimage/usr/local/bin/
|
||||||
chmod +x /mnt/sysimage/usr/sbin/create-user-vms.sh
|
chmod +x /mnt/sysimage/usr/local/bin/create-generic-vm-virtio-spice.sh
|
||||||
|
|
||||||
# fetch custom script and make it executable
|
# fetch custom script and make it executable
|
||||||
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/create-system-vms.sh -P /mnt/sysimage/usr/sbin/
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/deploy-minimal-server.sh -P /mnt/sysimage/usr/local/bin/
|
||||||
chmod +x /mnt/sysimage/usr/sbin/create-system-vms.sh
|
chmod +x /mnt/sysimage/usr/local/bin/deploy-minimal-server.sh
|
||||||
|
|
||||||
# fetch custom script and make it executable
|
# 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/
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/deploy-minimal-workstation.sh -P /mnt/sysimage/usr/local/bin/
|
||||||
chmod +x /mnt/sysimage/usr/sbin/virtualization-tweaks-root-needed.sh
|
chmod +x /mnt/sysimage/usr/local/bin/deploy-minimal-workstation.sh
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/deploy-phyllome-desktop.sh -P /mnt/sysimage/usr/local/bin/
|
||||||
|
chmod +x /mnt/sysimage/usr/local/bin/deploy-phyllome-desktop.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/local/bin/
|
||||||
|
chmod +x /mnt/sysimage/usr/local/bin/virtualization-tweaks-root-needed.sh
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user