diff options
Diffstat (limited to 'share/pxeboot/kickstart')
-rwxr-xr-x | share/pxeboot/kickstart/c7_gui.conf | 48 | ||||
-rwxr-xr-x | share/pxeboot/kickstart/c7_min.conf | 48 | ||||
-rwxr-xr-x | share/pxeboot/kickstart/ks-example.conf | 51 | ||||
-rwxr-xr-x | share/pxeboot/kickstart/r8_gui.conf | 54 | ||||
-rwxr-xr-x | share/pxeboot/kickstart/r8_min.conf | 41 |
5 files changed, 242 insertions, 0 deletions
diff --git a/share/pxeboot/kickstart/c7_gui.conf b/share/pxeboot/kickstart/c7_gui.conf new file mode 100755 index 0000000..09e1c83 --- /dev/null +++ b/share/pxeboot/kickstart/c7_gui.conf @@ -0,0 +1,48 @@ +#version=RHEL8 +# Use graphical install + +install +keyboard 'us' +lang zh_CN +text +skipx + +selinux --disabled +timezone Asia/Shanghai +auth --useshadow --passalgo=sha512 + +url --url="http://ipaddress/redhat/c7" +#autopart --type=lvm +zerombr +bootloader --location=mbr +clearpart --all --initlabel + +part /boot --fstype="ext4" --size=1024 +part swap --fstype="swap" --size=4096 +part / --fstype="xfs" --grow + +reboot +rootpw --plaintext 123456 + +%post --interpreter=/usr/bin/bash +useradd admin +echo 123456 | passwd --stdin admin +sed -i 's/^#PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config +%end + +%packages +@^infrastructure-server-environment +@base +@core +chrony +kexec-tools +%end + +%addon com_redhat_kdump --disable --reserve-mb='auto' +%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 diff --git a/share/pxeboot/kickstart/c7_min.conf b/share/pxeboot/kickstart/c7_min.conf new file mode 100755 index 0000000..09e1c83 --- /dev/null +++ b/share/pxeboot/kickstart/c7_min.conf @@ -0,0 +1,48 @@ +#version=RHEL8 +# Use graphical install + +install +keyboard 'us' +lang zh_CN +text +skipx + +selinux --disabled +timezone Asia/Shanghai +auth --useshadow --passalgo=sha512 + +url --url="http://ipaddress/redhat/c7" +#autopart --type=lvm +zerombr +bootloader --location=mbr +clearpart --all --initlabel + +part /boot --fstype="ext4" --size=1024 +part swap --fstype="swap" --size=4096 +part / --fstype="xfs" --grow + +reboot +rootpw --plaintext 123456 + +%post --interpreter=/usr/bin/bash +useradd admin +echo 123456 | passwd --stdin admin +sed -i 's/^#PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config +%end + +%packages +@^infrastructure-server-environment +@base +@core +chrony +kexec-tools +%end + +%addon com_redhat_kdump --disable --reserve-mb='auto' +%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 diff --git a/share/pxeboot/kickstart/ks-example.conf b/share/pxeboot/kickstart/ks-example.conf new file mode 100755 index 0000000..1537500 --- /dev/null +++ b/share/pxeboot/kickstart/ks-example.conf @@ -0,0 +1,51 @@ +#version=RHEL8 +# Use graphical install +graphical + +%packages +@^graphical-server-environment +@container-management +@development +@graphical-admin-tools +@headless-management +@infiniband +@legacy-unix +@network-file-system-client +@performance +@remote-desktop-clients +@remote-system-management +@rpm-development-tools +@system-tools +@web-server +%end + +keyboard --xlayouts='us' +lang en_US.UTF-8 +firstboot --enable +selinux --disabled +skipx +timezone Asia/Shanghai --isUtc --nontp + +network --bootproto=dhcp --onboot=on --ipv6=auto +network --hostname=compute.local +clearpart --all --initlabel +#part /boot --fstype="ext4" --size=1024 +#part swap --fstype="swap" --size=4096 +#part / --fstype="xfs" --grow +autopart --type=lvm + +url --url="http://172.16.2.1/redhat/r8" +#repo --name="AppStream" --baseurl=http://172.16.2.1/redhat/AppStream +#repo --name="BaseOS" --baseurl=http://172.16.2.1/redhat/BaseOS + +rootpw --iscrypted $6$eT.sWNwV69wyvhaR$N5tY4rJn6Y2slOrwuejfUBq3MhC5SNe1gUfTSYmOACObwW4ckUK9fjkKwC9TgSPhwwlaGdbtn0EFg11TJmAbC1 +user --name=admin --password=$6$0WN9CulSREVORA0S$FVWh6tkvdncbmSrsNPEb13GwxnGnEOKZliZLdL2IdY5E/fzLB8QmZAmgxyHh6ElSjObUCTbDEJ0l9.wRCRrsU. --iscrypted --gecos="admin" + +%addon com_redhat_kdump --disable --reserve-mb='auto' +%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 diff --git a/share/pxeboot/kickstart/r8_gui.conf b/share/pxeboot/kickstart/r8_gui.conf new file mode 100755 index 0000000..f038d8d --- /dev/null +++ b/share/pxeboot/kickstart/r8_gui.conf @@ -0,0 +1,54 @@ +#version=RHEL8 +# Use graphical install +graphical + +url --url="http://ipaddress/redhat/r8" + +lang en_US.UTF-8 +keyboard --xlayouts='us' +firstboot --enable +selinux --disabled +timezone Asia/Shanghai --isUtc --nontp +skipx + +zerombr +bootloader --location=mbr +clearpart --all --initlabel +part /boot --fstype="ext4" --size=1024 +part swap --fstype="swap" --size=4096 +part / --fstype="xfs" --grow + +rootpw --plaintext 123456 +reboot + +%post --interpreter=/usr/bin/bash +useradd admin +echo 123456 | passwd --stdin admin +sed -i 's/^#PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config +%end + +%packages +@^graphical-server-environment +@container-management +@development +@graphical-admin-tools +@headless-management +@infiniband +@legacy-unix +@network-file-system-client +@performance +@remote-desktop-clients +@remote-system-management +@rpm-development-tools +@system-tools +@web-server +%end + +%addon com_redhat_kdump --disable --reserve-mb='auto' +%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 diff --git a/share/pxeboot/kickstart/r8_min.conf b/share/pxeboot/kickstart/r8_min.conf new file mode 100755 index 0000000..5b56f51 --- /dev/null +++ b/share/pxeboot/kickstart/r8_min.conf @@ -0,0 +1,41 @@ +#version=RHEL8 +# Use graphical install +graphical + +url --url="http://ipaddress/redhat/r8" + +lang en_US.UTF-8 +keyboard --xlayouts='us' +firstboot --enable +selinux --disabled +timezone Asia/Shanghai --isUtc --nontp +skipx + +zerombr +bootloader --location=mbr +clearpart --all --initlabel +part /boot --fstype="ext4" --size=1024 +part swap --fstype="swap" --size=4096 +part / --fstype="xfs" --grow + +rootpw --plaintext 123456 +reboot + +%post --interpreter=/usr/bin/bash +useradd admin +echo 123456 | passwd --stdin admin +sed -i 's/^#PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config +%end + +%packages +@^minimal-environment +%end + +%addon com_redhat_kdump --disable --reserve-mb='auto' +%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 |