mirror of
https://github.com/rocky-linux/createhdds.git
synced 2024-11-17 10:41:25 +00:00
Make seperate kickstart files for 8 and 9
Notice that most 9 files are still without version to make it easier for the next major release
This commit is contained in:
parent
6940a2d695
commit
480023e76d
21
desktop-8.ks
Normal file
21
desktop-8.ks
Normal file
@ -0,0 +1,21 @@
|
||||
bootloader --location=mbr
|
||||
network --bootproto=dhcp
|
||||
url --url="https://download.rockylinux.org/pub/rocky/8/BaseOS/x86_64/os/"
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc America/New_York
|
||||
clearpart --all
|
||||
autopart
|
||||
rootpw --plaintext weakpassword
|
||||
user --name=test --password=weakpassword --plaintext
|
||||
firstboot --enable
|
||||
poweroff
|
||||
|
||||
%packages
|
||||
@^workstation-product-environment
|
||||
-selinux-policy-minimum
|
||||
%end
|
||||
|
||||
%post
|
||||
touch $INSTALL_ROOT/home/home_preserved
|
||||
%end
|
17
desktopencrypt-8-aarch64.ks
Normal file
17
desktopencrypt-8-aarch64.ks
Normal file
@ -0,0 +1,17 @@
|
||||
bootloader --location=mbr --append="console=tty0 quiet"
|
||||
network --bootproto=dhcp
|
||||
url --url="https://download.rockylinux.org/pub/rocky/8/BaseOS/aarch64/os/"
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc America/New_York
|
||||
clearpart --all
|
||||
autopart --encrypted --passphrase=weakpassword
|
||||
rootpw --plaintext weakpassword
|
||||
user --name=test --password=weakpassword --plaintext
|
||||
firstboot --enable
|
||||
poweroff
|
||||
|
||||
%packages
|
||||
@^workstation-product-environment
|
||||
-selinux-policy-minimum
|
||||
%end
|
17
desktopencrypt-8.ks
Normal file
17
desktopencrypt-8.ks
Normal file
@ -0,0 +1,17 @@
|
||||
bootloader --location=mbr
|
||||
network --bootproto=dhcp
|
||||
url --url="https://download.rockylinux.org/pub/rocky/8/BaseOS/x86_64/os/"
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc America/New_York
|
||||
clearpart --all
|
||||
autopart --encrypted --passphrase=weakpassword
|
||||
rootpw --plaintext weakpassword
|
||||
user --name=test --password=weakpassword --plaintext
|
||||
firstboot --enable
|
||||
poweroff
|
||||
|
||||
%packages
|
||||
@^workstation-product-environment
|
||||
-selinux-policy-minimum
|
||||
%end
|
@ -1,6 +1,6 @@
|
||||
bootloader --location=mbr --append="console=tty0 quiet"
|
||||
network --bootproto=dhcp
|
||||
url --url="https://download.rockylinux.org/pub/rocky/9/BaseOS/x86_64/os/"
|
||||
url --url="https://download.rockylinux.org/pub/rocky/9/BaseOS/aarch64/os/"
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc America/New_York
|
||||
|
14
minimal-8.ks
Normal file
14
minimal-8.ks
Normal file
@ -0,0 +1,14 @@
|
||||
bootloader --location=mbr
|
||||
network --bootproto=dhcp
|
||||
url --url="https://download.rockylinux.org/pub/rocky/8/BaseOS/x86_64/os/"
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc America/New_York
|
||||
clearpart --all
|
||||
autopart
|
||||
rootpw weakpassword
|
||||
poweroff
|
||||
|
||||
%packages
|
||||
@core
|
||||
%end
|
18
minimal-uefi-8.ks
Normal file
18
minimal-uefi-8.ks
Normal file
@ -0,0 +1,18 @@
|
||||
bootloader --location=mbr
|
||||
network --bootproto=dhcp
|
||||
url --url="https://download.rockylinux.org/pub/rocky/8/BaseOS/x86_64/os/"
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc America/New_York
|
||||
clearpart --all
|
||||
autopart
|
||||
rootpw weakpassword
|
||||
poweroff
|
||||
|
||||
%packages
|
||||
@core
|
||||
%end
|
||||
|
||||
%post
|
||||
touch $INSTALL_ROOT/home/home_preserved
|
||||
%end
|
16
server-8.ks
Normal file
16
server-8.ks
Normal file
@ -0,0 +1,16 @@
|
||||
bootloader --location=mbr
|
||||
network --bootproto=dhcp
|
||||
url --url="https://download.rockylinux.org/pub/rocky/8/BaseOS/x86_64/os/"
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc America/New_York
|
||||
clearpart --all
|
||||
autopart
|
||||
rootpw weakpassword
|
||||
user --name=test --password=weakpassword --plaintext
|
||||
poweroff
|
||||
|
||||
%packages
|
||||
@^server-product-environment
|
||||
plymouth-system-theme
|
||||
%end
|
19
support-8.ks
Normal file
19
support-8.ks
Normal file
@ -0,0 +1,19 @@
|
||||
bootloader --location=mbr
|
||||
network --bootproto=dhcp
|
||||
url --url="https://download.rockylinux.org/pub/rocky/8/BaseOS/x86_64/os/"
|
||||
#repo --name="epel" --baseurl="http://mirrors.kernel.org/fedora-epel/8/Everything/x86_64/"
|
||||
# use epel to keep scsi-target-utils instead of targetcli
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc America/New_York
|
||||
clearpart --all
|
||||
autopart
|
||||
rootpw weakpassword
|
||||
poweroff
|
||||
|
||||
%packages
|
||||
@core
|
||||
targetcli
|
||||
nfs-utils
|
||||
dnsmasq
|
||||
%end
|
@ -1,7 +1,7 @@
|
||||
bootloader --location=mbr
|
||||
network --bootproto=dhcp
|
||||
url --url="https://download.rockylinux.org/pub/rocky/9/BaseOS/x86_64/os/"
|
||||
#repo --name="epel" --baseurl="http://mirrors.kernel.org/fedora-epel/8/Everything/x86_64/"
|
||||
#repo --name="epel" --baseurl="http://mirrors.kernel.org/fedora-epel/9/Everything/x86_64/"
|
||||
# use epel to keep scsi-target-utils instead of targetcli
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
|
Loading…
Reference in New Issue
Block a user