forked from roots/phyllomeos
		
	remove neofetch, fix name resolution
explictly enabling systemd-resolved, to solve name resolution failure on new installations remove neofetch and change some comments
This commit is contained in:
		| @@ -5,26 +5,26 @@ | ||||
| #  / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/   \____//____/ | ||||
| # /_/          /____/ | ||||
| # | ||||
| # What ? This kickstart file provides a basic block to build a minimal operating system. | ||||
| # What ? This kickstart file provides the basic block to build a minimal operating system based on Fedora | ||||
|  | ||||
| text # Perform installation in text mode | ||||
| text # Perform the kickstart installation in text mode | ||||
|  | ||||
| keyboard --xlayouts='ch (fr)' # set keyboard layouts for Romandy | ||||
| keyboard --xlayouts='ch (fr)' # Set keyboard layouts for Romandy | ||||
| lang en_US.UTF-8 # Set system language to American English. More languages could be supported: --addsupport=cs_CZ,de_DE,en_UK | ||||
| timezone Europe/Paris --utc # Set system timezone to Paris | ||||
|  | ||||
| rootpw --lock --iscrypted locked # Lock the root account | ||||
|  | ||||
| selinux --disabled # Make sure SELinux is disabled / Other option: --enforcing | ||||
| selinux --disabled # Make sure SELinux is disabled ; other option: --enforcing | ||||
| firewall --enabled --service=mdns # Make sure the firewall is enabled | ||||
| services --enabled=NetworkManager,chronyd --disabled=sshd | ||||
| services --enabled=NetworkManager,chronyd,systemd-resolved --disabled=sshd | ||||
| network  --onboot=yes --bootproto=dhcp --device=link --activate --hostname=phyllome-alpha # Configure network interfaces and set hostname. "link" selects the first device reaching an up state  | ||||
|  | ||||
| zerombr # WARNING : Dangerous command ! Will clear the Master Boot Record | ||||
| clearpart --all --initlabel # Partition clearing information. This setup uses GPT by default. | ||||
| bootloader --timeout=1 # Set the GNU GRUB bootloader timeout to 1. | ||||
| bootloader --timeout=1 # Set the GNU GRUB bootloader timeout to 1 | ||||
|  | ||||
| %packages --exclude-weakdeps # Beginning of the package section. Does not include weak dependencies. | ||||
| %packages --exclude-weakdeps # Beginning of the package section. Does not include weak dependencies | ||||
|  | ||||
| @core # minimal installation | ||||
| @hardware-support # Provides extended hardware support, and especially extra wireless drivers | ||||
| @@ -32,7 +32,6 @@ pciutils # Pciutils provides lspci commandline tool, which is not installed by d | ||||
| libusb # add usb library (otherwise, USB 3.0 controllers seem to not work) | ||||
| usbutils # add lsusb utility | ||||
| wget # "The non-interactive network downloader. " Used to fetch files during installation | ||||
| neofetch # a simple tool to show hardware-related informations inside a terminal | ||||
| nano # The nano text editor | ||||
| -fedora-logos # Remove Fedora logos to comply with [Fedora Remix legal guidelines](https://fedoraproject.org/wiki/Remix)  | ||||
| -fedora-release # Remove Fedora release-notes | ||||
|   | ||||
		Reference in New Issue
	
	Block a user