added kickstart for fedora
This commit is contained in:
parent
4224b548ac
commit
9471b7d84d
1 changed files with 44 additions and 0 deletions
44
fedora.ks
Normal file
44
fedora.ks
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
#version=DEVEL
|
||||
# Use graphical install
|
||||
graphical
|
||||
|
||||
|
||||
%packages
|
||||
@^workstation-product-environment
|
||||
|
||||
%end
|
||||
|
||||
# Keyboard layouts
|
||||
keyboard --xlayouts='us'
|
||||
# System language
|
||||
lang en_US.UTF-8
|
||||
|
||||
# Network information
|
||||
network --hostname=localhost.localdomain
|
||||
|
||||
# Run the Setup Agent on first boot
|
||||
firstboot --enable
|
||||
# System services
|
||||
services --enabled="chronyd"
|
||||
|
||||
ignoredisk --only-use=sda
|
||||
autopart
|
||||
# Partition clearing information
|
||||
clearpart --none --initlabel
|
||||
|
||||
# System timezone
|
||||
timezone Europe/Amsterdam --utc --ntpservers=pfsense.alcatrash.local
|
||||
|
||||
# Root password
|
||||
rootpw --iscrypted $6$CEWqHJNZztCs096D$eCrfnxW8.7Je5x0AUXCqgAJ6mvl0G28gSOm5y5ytWQYJxpIsc/PYxXjO3D6rsxUzhhX24ZpXZRd1Pdy868adQ/
|
||||
user --groups=wheel --name=michael --password=$6$kcYQ1rw7djww4kr9$snO2PrhB7Q5734P2s.nltz2N9eGESmJFKR7PzPDabn5SULnzsT7UfdNvbVnCnS1AuMM5skH9u4vlXwhqBcIG8. --iscrypted --gecos="michael"
|
||||
|
||||
%addon com_redhat_kdump --disable --reserve-mb='128'
|
||||
|
||||
%end
|
||||
|
||||
%anaconda
|
||||
pwpolicy root --minlen=6 --minquality=1 --notstrict --nochanges --notempty
|
||||
pwpolicy user --minlen=6 --minquality=1 --notstrict --nochanges --emptyok
|
||||
pwpolicy luks --minlen=6 --minquality=1 --notstrict --nochanges --notempty
|
||||
%end
|
||||
Loading…
Add table
Add a link
Reference in a new issue