Last active
May 21, 2020 18:19
-
-
Save ojpojao/913968b30f0fe7e846b0ccafa169b7f3 to your computer and use it in GitHub Desktop.
fedora test ks.cfg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#version=DEVEL | |
ignoredisk --only-use=sda | |
iscsiname iqn.1994-05.com.redhat:46a93490da59 | |
autopart | |
# Partition clearing information | |
clearpart --none --initlabel | |
# Use graphical install | |
graphical | |
# Use CDROM installation media | |
cdrom | |
# Keyboard layouts | |
keyboard --vckeymap=br --xlayouts='br' | |
# System language | |
lang en_US.UTF-8 | |
# Network information | |
# network --hostname=localhost.localdomain | |
network --bootproto=static --device=enp0s3 --gateway=192.168.1.254 --hostname=fdocker00.local --ip=192.168.1.172 --nameserver=192.168.1.254 --netmask=255.255.255.0 --ipv6=auto --activate | |
# network --bootproto=static --device=ens33 --ip=192.168.52.129 --nameserver=192.168.52.1 --netmask=255.255.255.0 --ipv6=auto --activate | |
# Root password | |
# Root password | |
rootpw vagrant | |
# user --groups=wheel --name=vagrant --password=$6$Fqv9BzlIif3RQ5I8$bGDp7mo7zOuo1FpwSaRSOSq6MWgNgV55pS.RGGODhw0CiAX8SeMOXHDFVkmeyp/FW1BkLb.GErgruj9XanOH4. --iscrypted --gecos="vagrant" | |
user --groups=wheel --name=vagrant --password="vagrant" --gecos="vagrant" | |
# Reboot Automagic | |
reboot | |
# Run the Setup Agent on first boot | |
firstboot --enable | |
# System services | |
services --disabled="chronyd" | |
# System timezone | |
timezone America/Belem --isUtc --nontp | |
%packages | |
@^server-product-environment | |
%end | |
%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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is my KickStart file for my network computers LAB. I am use Fedora32 Server x86_64 for this lab. @ojpojao