64 lines
3.3 KiB
INI
64 lines
3.3 KiB
INI
# __ ____ ____ _____
|
|
# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/
|
|
# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \
|
|
# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ /
|
|
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
|
|
# /_/ /____/
|
|
#
|
|
# 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 |