mirror of
https://github.com/PhyllomeOS/phyllomeos.git
synced 2024-12-22 13:05:17 +00:00
latest dhi version
command to fetch scripts
This commit is contained in:
parent
3169caeb02
commit
6aef6aad6c
@ -1,5 +1,7 @@
|
|||||||
# Generated by pykickstart v3.32
|
# Generated by pykickstart v3.34
|
||||||
#version=DEVEL
|
#version=DEVEL
|
||||||
|
# X Window System configuration information
|
||||||
|
xconfig --defaultdesktop=GNOME --startxonboot
|
||||||
# Keyboard layouts
|
# Keyboard layouts
|
||||||
keyboard --xlayouts='ch (fr)'
|
keyboard --xlayouts='ch (fr)'
|
||||||
# Root password
|
# Root password
|
||||||
@ -13,19 +15,17 @@ text
|
|||||||
# Network information
|
# Network information
|
||||||
network --bootproto=dhcp --device=link --hostname=phyllome-alpha --activate
|
network --bootproto=dhcp --device=link --hostname=phyllome-alpha --activate
|
||||||
# Firewall configuration
|
# Firewall configuration
|
||||||
firewall --enabled
|
firewall --enabled --service=mdns
|
||||||
# Use network installation
|
# Use network installation
|
||||||
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch"
|
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch"
|
||||||
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||||
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
||||||
# System timezone
|
# System timezone
|
||||||
timezone Europe/Paris --utc
|
timezone Europe/Paris --utc
|
||||||
# Run the Setup Agent on first boot
|
|
||||||
firstboot --reconfig
|
|
||||||
# SELinux configuration
|
# SELinux configuration
|
||||||
selinux --enforcing
|
selinux --enforcing
|
||||||
# System services
|
# System services
|
||||||
services --disabled="sshd" --enabled="NetworkManager"
|
services --disabled="sshd" --enabled="NetworkManager,libvirtd"
|
||||||
# System bootloader configuration
|
# System bootloader configuration
|
||||||
bootloader --location=mbr --timeout=1
|
bootloader --location=mbr --timeout=1
|
||||||
# Clear the Master Boot Record
|
# Clear the Master Boot Record
|
||||||
@ -43,36 +43,80 @@ localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be p
|
|||||||
dnf update -y # Update the system
|
dnf update -y # Update the system
|
||||||
grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
||||||
|
|
||||||
# In the %post section of the kickstart file, add the following as the first line. Probably useless : leaving this uncommented for the moment
|
|
||||||
# See : https://www.opensourceforu.com/2010/01/roll-out-a-fedora-remix/
|
|
||||||
# sed -i -e 's/Generic release/LFY Fedora Remix/g' /etc/fedora-release /etc/issue
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%post --nochroot --logfile=/mnt/sysimage/root/bh.log
|
%post --nochroot --logfile=/mnt/sysimage/root/bh.log
|
||||||
|
# %post --log=/root/bh.log # Beginning of %post section. Those commands are executed outside the chroot environment. Logging is enabled to help with post-installation troubleshooting
|
||||||
|
|
||||||
mkdir /mnt/sysimage/var/lib/libvirt/iso # Create a directory to store iso images
|
mkdir /mnt/sysimage/var/lib/libvirt/iso # Create a directory to store iso images
|
||||||
# virsh pool-create-as --name iso --type dir --target /mnt/sysimage/var/lib/libvirt/iso # Make libvirt aware of this new directory by creating a so-called 'pool'
|
|
||||||
# doesn't work
|
|
||||||
|
|
||||||
wget https://boot.netboot.xyz/ipxe/netboot.xyz.iso -P /var/lib/libvirt/iso/
|
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/
|
||||||
|
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/
|
||||||
|
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/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/virtualization-tweaks-root-needed.sh
|
||||||
|
|
||||||
|
# # Create new file /etc/systemd/system/postinstall.service using cat:
|
||||||
|
# cat > /mnt/sysimage/etc/systemd/system/post-install.service<< EOF
|
||||||
|
# [Unit]
|
||||||
|
# Description=Post-installation configuration for Phyllome OS
|
||||||
|
# After=gdm.service
|
||||||
|
# Requires=gdm.service
|
||||||
|
#
|
||||||
|
# [Service]
|
||||||
|
# Type=oneshot
|
||||||
|
# ExecStart=/bin/bash /usr/sbin/post-install.sh
|
||||||
|
# RemainAfterExit=yes
|
||||||
|
#
|
||||||
|
# [Install]
|
||||||
|
# WantedBy=multi-user.target
|
||||||
|
# EOF
|
||||||
|
#
|
||||||
|
# systemctl enable /mnt/sysimage/etc/systemd/system/post-install.service # Enable systemd unit
|
||||||
|
|
||||||
# Add a network bridge. Still need to declare it to libvirt/virt-manager
|
# Add a network bridge. Still need to declare it to libvirt/virt-manager
|
||||||
nmcli con add ifname br0 type bridge con-name br0
|
# nmcli con add ifname br0 type bridge con-name br0
|
||||||
nmcli con add type bridge-slave ifname enp1s0 master br0
|
# nmcli con add type bridge-slave ifname enp1s0 master br0 # to-do : generalize this command so that it could regardless of the name of the ethernet device
|
||||||
nmcli con up br0
|
# nmcli con up br0
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/dh.log
|
||||||
|
|
||||||
|
truncate -s 0 /mnt/sysimage/usr/share/gnome-initial-setup/vendor.conf # remove content of vendor.conf so that all options are made available
|
||||||
|
|
||||||
|
# Create a file to autostart virt-manager
|
||||||
|
cat > /mnt/sysimage/etc/xdg/autostart/virt-manager.desktop << EOF
|
||||||
|
[Desktop Entry]
|
||||||
|
Type=Application
|
||||||
|
Name=Virtual Machine Manager
|
||||||
|
Exec=virt-manager
|
||||||
|
EOF
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%packages --exclude-weakdeps
|
%packages --exclude-weakdeps
|
||||||
@core
|
@core
|
||||||
|
@hardware-support
|
||||||
|
dejavu-sans-mono-fonts
|
||||||
|
elementary-wallpapers-gnome.noarch
|
||||||
fedora-remix-logos
|
fedora-remix-logos
|
||||||
generic-logos
|
generic-logos
|
||||||
generic-release
|
generic-release
|
||||||
generic-release-common
|
generic-release-common
|
||||||
generic-release-notes
|
generic-release-notes
|
||||||
|
gnome-initial-setup
|
||||||
|
gnome-shell
|
||||||
|
gnome-terminal
|
||||||
guestfs-tools
|
guestfs-tools
|
||||||
initial-setup
|
|
||||||
libguestfs-tools
|
libguestfs-tools
|
||||||
libvirt
|
libvirt
|
||||||
libvirt-daemon-config-network
|
libvirt-daemon-config-network
|
||||||
@ -85,12 +129,15 @@ qemu-guest-agent
|
|||||||
qemu-kvm
|
qemu-kvm
|
||||||
spice-vdagent
|
spice-vdagent
|
||||||
virt-install
|
virt-install
|
||||||
|
virt-manager
|
||||||
virt-top
|
virt-top
|
||||||
wget
|
wget
|
||||||
|
wpa_supplicant
|
||||||
-fedora-logos
|
-fedora-logos
|
||||||
-fedora-release
|
-fedora-release
|
||||||
-fedora-release-common
|
-fedora-release-common
|
||||||
-fedora-release-identity-basic
|
-fedora-release-identity-basic
|
||||||
-fedora-release-notes
|
-fedora-release-notes
|
||||||
|
-gnome-tour
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
Loading…
Reference in New Issue
Block a user