try minification
This commit is contained in:
@@ -2,106 +2,46 @@
|
|||||||
#version=DEVEL
|
#version=DEVEL
|
||||||
# Use text mode install
|
# Use text mode install
|
||||||
text
|
text
|
||||||
# Firewall configuration
|
|
||||||
firewall --disabled
|
|
||||||
# Run the Setup Agent on first boot
|
|
||||||
firstboot --reconfig
|
|
||||||
# Keyboard layouts
|
# Keyboard layouts
|
||||||
keyboard --xlayouts='ch (fr)'
|
keyboard --xlayouts='ch (fr)'
|
||||||
# System language
|
# System language
|
||||||
lang en_US.UTF-8
|
lang en_US.UTF-8
|
||||||
# Network information
|
|
||||||
network --bootproto=dhcp --device=link --hostname=phyllome-alpha --activate
|
|
||||||
# Shutdown after installation
|
# Shutdown after installation
|
||||||
shutdown
|
shutdown
|
||||||
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-43&arch=x86_64
|
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-43&arch=x86_64
|
||||||
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f43&arch=x86_64
|
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f43&arch=x86_64
|
||||||
# Root password
|
# Root password
|
||||||
rootpw --iscrypted --lock locked
|
rootpw --plaintext 1234 # Root account is enabled with weak password
|
||||||
# SELinux configuration
|
|
||||||
selinux --disabled
|
|
||||||
# System services
|
|
||||||
services --enabled="NetworkManager,systemd-resolved"
|
|
||||||
# System timezone
|
# System timezone
|
||||||
timezone Europe/Zurich --utc
|
timezone Europe/Zurich --utc
|
||||||
# Use network installation
|
# Use network installation
|
||||||
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-43&arch=x86_64"
|
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-43&arch=x86_64"
|
||||||
# System bootloader configuration
|
# System bootloader configuration
|
||||||
bootloader --location=mbr --timeout=1
|
bootloader --sdboot
|
||||||
# Clear the Master Boot Record
|
# Clear the Master Boot Record
|
||||||
zerombr
|
zerombr
|
||||||
# Partition clearing information
|
# Partition clearing information
|
||||||
clearpart --all --initlabel
|
clearpart --all --initlabel
|
||||||
# Disk partitioning information
|
# Disk partitioning information
|
||||||
part /boot/efi --fstype="efi" --size=2048 --fsoptions="umask=0077,shortname=winnt" --label=efi
|
part /boot/efi --fstype="efi" --size=2048 --fsoptions="umask=0077,shortname=winnt" --label=efi
|
||||||
part /boot --fstype="ext4" --size=512 --label=boot
|
|
||||||
part / --fstype="ext4" --grow --label=root
|
part / --fstype="ext4" --grow --label=root
|
||||||
|
|
||||||
%post --logfile=/mnt/sysimage/root/post.log
|
%packages --nocore --inst-langs=en --exclude-weakdeps
|
||||||
|
|
||||||
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked.
|
|
||||||
dnf update -y # Update the system
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
%packages --exclude-weakdeps
|
|
||||||
NetworkManager
|
|
||||||
NetworkManager-config-connectivity-fedora
|
|
||||||
audit
|
|
||||||
basesystem
|
basesystem
|
||||||
bash
|
bash
|
||||||
coreutils
|
|
||||||
curl
|
|
||||||
dhcp-client
|
|
||||||
dnf5
|
|
||||||
dnf5-plugins
|
|
||||||
dracut
|
dracut
|
||||||
dracut-config-rescue
|
|
||||||
e2fsprogs
|
|
||||||
fedora-remix-logos
|
fedora-remix-logos
|
||||||
filesystem
|
filesystem
|
||||||
firewalld
|
|
||||||
fwupd
|
|
||||||
generic-logos
|
generic-logos
|
||||||
generic-release
|
generic-release
|
||||||
generic-release-common
|
generic-release-common
|
||||||
generic-release-notes
|
generic-release-notes
|
||||||
glibc
|
glibc
|
||||||
hostname
|
|
||||||
initial-setup
|
|
||||||
iproute
|
|
||||||
iputils
|
|
||||||
kbd
|
|
||||||
kernel
|
kernel
|
||||||
less
|
|
||||||
libusb
|
|
||||||
man-db
|
|
||||||
nano
|
|
||||||
ncurses
|
|
||||||
openssh-clients
|
|
||||||
openssh-server
|
|
||||||
parted
|
|
||||||
pciutils
|
|
||||||
plymouth
|
|
||||||
policycoreutils
|
|
||||||
prefixdevname
|
|
||||||
procps-ng
|
|
||||||
qemu-guest-agent
|
|
||||||
rootfiles
|
rootfiles
|
||||||
rpm
|
rpm
|
||||||
selinux-policy-targeted
|
|
||||||
setup
|
setup
|
||||||
shadow-utils
|
|
||||||
spice-vdagent
|
|
||||||
sssd-common
|
|
||||||
sssd-kcm
|
|
||||||
sudo
|
|
||||||
systemd
|
systemd
|
||||||
systemd-resolved
|
|
||||||
usbutils
|
|
||||||
util-linux
|
|
||||||
vim-minimal
|
|
||||||
wget
|
|
||||||
zram-generator-defaults
|
zram-generator-defaults
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
bootloader --sdboot --location=mbr --timeout=1 # Use systemd-boot and set a timeout to 1
|
bootloader --sdboot --timeout=1 # Use systemd-boot and set a timeout to 1
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
%packages --exclude-weakdeps # Beginning of the package section. Does not include weak dependencies. Description courtesy of the Fedora project
|
|
||||||
|
|
||||||
# Default packages fom core dnf group not marked as mandatory (`dnf group info --hidden core`)
|
|
||||||
NetworkManager # Network connection manager and user applications
|
|
||||||
NetworkManager-config-connectivity-fedora # NetworkManager config file for connectivity checking via Fedora servers
|
|
||||||
dnf5-plugins # Plugins for dnf5
|
|
||||||
dracut-config-rescue # dracut configuration to turn on rescue image generation
|
|
||||||
firewalld # A firewall daemon with D-Bus interface providing a dynamic firewall
|
|
||||||
fwupd # Firmware update daemon
|
|
||||||
plymouth # Graphical Boot Animation and Logger
|
|
||||||
prefixdevname # Udev helper utility that provides network interface naming using user defined prefix
|
|
||||||
systemd-resolved # Network Name Resolution manager
|
|
||||||
zram-generator-defaults # Default configuration for zram-generator
|
|
||||||
|
|
||||||
# Hand-picked packages
|
|
||||||
pciutils # PCI bus related utilities
|
|
||||||
libusb # Library for accessing USB devices
|
|
||||||
usbutils # Linux USB utilities
|
|
||||||
curl # transfer a URL
|
|
||||||
wget # An advanced file and recursive website downloader
|
|
||||||
nano # A small text editor
|
|
||||||
|
|
||||||
%end # End of the packages section
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
# __ ____ ____ _____
|
|
||||||
# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/
|
|
||||||
# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \
|
|
||||||
# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ /
|
|
||||||
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
|
|
||||||
# /_/ /____/
|
|
||||||
#
|
|
||||||
# Provides the mandatory packages that are part of the core DNF group
|
|
||||||
# More information: https://pykickstart.readthedocs.io/en/latest/kickstart-docs.html#id240
|
|
||||||
|
|
||||||
%packages --ignoremissing --nocore --exclude-weakdeps # Beginning of the package section. Does not include weak dependencies. Description courtesy of the Fedora project
|
|
||||||
|
|
||||||
# Mandatory packages found in hidden `core` group (`dnf group info --hidden core`)
|
|
||||||
basesystem # The skeleton package which defines a simple Fedora system
|
|
||||||
bash # The Bourne Again SHell, a command-line interpreter.
|
|
||||||
curl # A utility for getting files from remote servers (FTP, HTTP, and others)
|
|
||||||
dhcp-client # Provides the ISC DHCP client daemon and dhclient-script
|
|
||||||
dnf5 # Command-line package manager
|
|
||||||
dracut # Initramfs generator using udev
|
|
||||||
filesystem # The basic directory layout for a Linux system
|
|
||||||
glibc # The GNU libc libraries
|
|
||||||
hostname # Utility to set/show the host name or domain name
|
|
||||||
iproute # Advanced IP routing and network device configuration tools
|
|
||||||
iputils # Network monitoring tools including ping
|
|
||||||
kbd # Tools for configuring the console (keyboard, virtual terminals, etc.)
|
|
||||||
kernel # The Linux kernel
|
|
||||||
ncurses # Ncurses support utilities
|
|
||||||
parted # The GNU disk partition manipulation program
|
|
||||||
procps-ng # System and process monitoring utilities
|
|
||||||
rootfiles # The basic required files for the root user's directory
|
|
||||||
rpm # The RPM package management system
|
|
||||||
setup # A set of system configuration and setup files
|
|
||||||
shadow-utils # Utilities for managing accounts and shadow password files
|
|
||||||
systemd # System and Service Manager
|
|
||||||
util-linux # Collection of basic system utilities
|
|
||||||
|
|
||||||
# Packages to make Phyllome OS a generic distro
|
|
||||||
# Adds packages to comply with Fedora Remix legal guidelines: https://fedoraproject.org/wiki/Remix
|
|
||||||
fedora-remix-logos # Fedora Remix logos
|
|
||||||
generic-release # Generic release files
|
|
||||||
generic-logos # Icons and pictures
|
|
||||||
generic-release-common # Generic release files
|
|
||||||
generic-release-notes # Release Notes
|
|
||||||
|
|
||||||
%end # End of the packages section
|
|
||||||
64
ingredients/core-packages.cfg
Normal file
64
ingredients/core-packages.cfg
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
# __ ____ ____ _____
|
||||||
|
# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/
|
||||||
|
# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \
|
||||||
|
# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ /
|
||||||
|
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
|
||||||
|
# /_/ /____/
|
||||||
|
#
|
||||||
|
# Provides the mandatory packages that are part of the core DNF group
|
||||||
|
# More information: https://pykickstart.readthedocs.io/en/latest/kickstart-docs.html#id240
|
||||||
|
|
||||||
|
%packages --excludedocs --inst-langs=en --nocore --exclude-weakdeps # Beginning of the package section. Does not include weak dependencies. Description courtesy of the Fedora project
|
||||||
|
|
||||||
|
# Mandatory packages found in hidden `core` group (`dnf group info --hidden core`)
|
||||||
|
basesystem # The skeleton package which defines a simple Fedora system
|
||||||
|
bash # The Bourne Again SHell, a command-line interpreter.
|
||||||
|
curl # A utility for getting files from remote servers (FTP, HTTP, and others)
|
||||||
|
# dhcp-client # Provides the ISC DHCP client daemon and dhclient-script
|
||||||
|
dnf5 # Command-line package manager
|
||||||
|
dracut # Initramfs generator using udev
|
||||||
|
filesystem # The basic directory layout for a Linux system
|
||||||
|
glibc # The GNU libc libraries
|
||||||
|
# hostname # Utility to set/show the host name or domain name
|
||||||
|
# iproute # Advanced IP routing and network device configuration tools
|
||||||
|
# iputils # Network monitoring tools including ping
|
||||||
|
# kbd # Tools for configuring the console (keyboard, virtual terminals, etc.)
|
||||||
|
kernel # The Linux kernel
|
||||||
|
# ncurses # Ncurses support utilities
|
||||||
|
# parted # The GNU disk partition manipulation program
|
||||||
|
# procps-ng # System and process monitoring utilities
|
||||||
|
rootfiles # The basic required files for the root user's directory
|
||||||
|
rpm # The RPM package management system
|
||||||
|
setup # A set of system configuration and setup files
|
||||||
|
shadow-utils # Utilities for managing accounts and shadow password files
|
||||||
|
systemd # System and Service Manager
|
||||||
|
# util-linux # Collection of basic system utilities
|
||||||
|
|
||||||
|
# Default packages fom core dnf group not marked as mandatory (`dnf group info --hidden core`)
|
||||||
|
# NetworkManager # Network connection manager and user applications
|
||||||
|
# NetworkManager-config-connectivity-fedora # NetworkManager config file for connectivity checking via Fedora servers
|
||||||
|
# dnf5-plugins # Plugins for dnf5
|
||||||
|
# dracut-config-rescue # dracut configuration to turn on rescue image generation
|
||||||
|
# firewalld # A firewall daemon with D-Bus interface providing a dynamic firewall
|
||||||
|
# fwupd # Firmware update daemon
|
||||||
|
# plymouth # Graphical Boot Animation and Logger
|
||||||
|
# prefixdevname # Udev helper utility that provides network interface naming using user defined prefix
|
||||||
|
# systemd-resolved # Network Name Resolution manager
|
||||||
|
zram-generator-defaults # Default configuration for zram-generator
|
||||||
|
|
||||||
|
# Hand-picked packages
|
||||||
|
# pciutils # PCI bus related utilities
|
||||||
|
# libusb # Library for accessing USB devices
|
||||||
|
# usbutils # Linux USB utilities
|
||||||
|
# wget # An advanced file and recursive website downloader
|
||||||
|
# nano # A small text editor
|
||||||
|
|
||||||
|
# Packages to make Phyllome OS a generic distro
|
||||||
|
# Adds packages to comply with Fedora Remix legal guidelines: https://fedoraproject.org/wiki/Remix
|
||||||
|
fedora-remix-logos # Fedora Remix logos
|
||||||
|
generic-release # Generic release files
|
||||||
|
generic-logos # Icons and pictures
|
||||||
|
generic-release-common # Generic release files
|
||||||
|
generic-release-notes # Release Notes
|
||||||
|
|
||||||
|
%end # End of the packages section
|
||||||
@@ -17,8 +17,6 @@
|
|||||||
%include ../ingredients/core-packages-mandatory.cfg # Mandatory packages
|
%include ../ingredients/core-packages-mandatory.cfg # Mandatory packages
|
||||||
%include ../ingredients/core-packages-default.cfg # Default but not necessary packages
|
%include ../ingredients/core-packages-default.cfg # Default but not necessary packages
|
||||||
%include ../ingredients/core-fedora-repo-43.cfg # Offical repositories for Fedora
|
%include ../ingredients/core-fedora-repo-43.cfg # Offical repositories for Fedora
|
||||||
%include ../ingredients/core-post.cfg # Triggered after the installation
|
|
||||||
%include ../ingredients/core-initial-setup-desktop.cfg # OEM setup for GNOME Shell
|
|
||||||
%include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment
|
%include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment
|
||||||
%include ../ingredients/base-desktop-virtual-machine-manager.cfg # Virtual Machine Manager
|
%include ../ingredients/base-desktop-virtual-machine-manager.cfg # Virtual Machine Manager
|
||||||
%include ../ingredients/base-hypervisor.cfg # Base hypervisor
|
%include ../ingredients/base-hypervisor.cfg # Base hypervisor
|
||||||
|
|||||||
@@ -17,7 +17,5 @@
|
|||||||
%include ../ingredients/core-packages-mandatory.cfg # Mandatory packages
|
%include ../ingredients/core-packages-mandatory.cfg # Mandatory packages
|
||||||
%include ../ingredients/core-packages-default.cfg # Default but not necessary packages
|
%include ../ingredients/core-packages-default.cfg # Default but not necessary packages
|
||||||
%include ../ingredients/core-fedora-repo-43.cfg # Offical repositories for Fedora
|
%include ../ingredients/core-fedora-repo-43.cfg # Offical repositories for Fedora
|
||||||
%include ../ingredients/core-post.cfg # Triggered after the installation
|
|
||||||
%include ../ingredients/core-initial-setup-desktop.cfg # OEM setup for GNOME Shell
|
|
||||||
%include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment
|
%include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment
|
||||||
%include ../ingredients/base-guest-agents.cfg # Guest agents
|
%include ../ingredients/base-guest-agents.cfg # Guest agents
|
||||||
16
recipes/virtual-nano.cfg
Normal file
16
recipes/virtual-nano.cfg
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# __ ____ ____ _____
|
||||||
|
# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/
|
||||||
|
# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \
|
||||||
|
# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ /
|
||||||
|
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
|
||||||
|
# /_/ /____/
|
||||||
|
|
||||||
|
# A recipe for a virtual server
|
||||||
|
|
||||||
|
%include ../ingredients/core.cfg # Text mode
|
||||||
|
%include ../ingredients/core-storage.cfg # ext4-based storage configuration
|
||||||
|
%include ../ingredients/core-bootloader-systemd-boot.cfg # Set bootloader to sdboot
|
||||||
|
%include ../ingredients/core-locale.cfg # System locale set to Swiss French as keyboard layout and English as language
|
||||||
|
%include ../ingredients/core-security-off.cfg # Lock root account, disable firewall and SELinux
|
||||||
|
%include ../ingredients/core-packages.cfg # Mandatory packages
|
||||||
|
%include ../ingredients/core-fedora-repo-43.cfg # Offical repositories for Fedora
|
||||||
@@ -17,7 +17,5 @@
|
|||||||
%include ../ingredients/core-packages-mandatory.cfg # Mandatory packages
|
%include ../ingredients/core-packages-mandatory.cfg # Mandatory packages
|
||||||
%include ../ingredients/core-packages-default.cfg # Default but not necessary packages
|
%include ../ingredients/core-packages-default.cfg # Default but not necessary packages
|
||||||
%include ../ingredients/core-fedora-repo-43.cfg # Offical repositories for Fedora
|
%include ../ingredients/core-fedora-repo-43.cfg # Offical repositories for Fedora
|
||||||
%include ../ingredients/core-post.cfg # Triggered after the installation
|
|
||||||
%include ../ingredients/core-initial-setup-server.cfg # For headless systems
|
|
||||||
%include ../ingredients/base-hypervisor.cfg # Base hypervisor
|
%include ../ingredients/base-hypervisor.cfg # Base hypervisor
|
||||||
%include ../ingredients/base-guest-agents.cfg # Guest agents
|
%include ../ingredients/base-guest-agents.cfg # Guest agents
|
||||||
|
|||||||
Reference in New Issue
Block a user