mirror of
https://github.com/rocky-linux/createhdds.git
synced 2025-01-02 22:50:55 +00:00
Split kickstart support file bundle
This commit is contained in:
parent
480023e76d
commit
bb94d9c1a3
3 changed files with 48 additions and 2 deletions
33
hdds.json
33
hdds.json
|
@ -52,7 +52,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name" : "ks",
|
"name" : "ks-8",
|
||||||
"size" : "100M",
|
"size" : "100M",
|
||||||
"parts" : [
|
"parts" : [
|
||||||
{
|
{
|
||||||
|
@ -66,7 +66,36 @@
|
||||||
{
|
{
|
||||||
"part" : "1",
|
"part" : "1",
|
||||||
"target" : "/root-user-crypted-net.ks",
|
"target" : "/root-user-crypted-net.ks",
|
||||||
"source" : "root-user-crypted-net.ks"
|
"source" : "root-user-crypted-net-8.ks"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"part" : "1",
|
||||||
|
"target" : "/freeipa.ks",
|
||||||
|
"source" : "freeipa.ks"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"part" : "1",
|
||||||
|
"target" : "/freeipaclient.ks",
|
||||||
|
"source" : "freeipaclient.ks"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name" : "ks-9",
|
||||||
|
"size" : "100M",
|
||||||
|
"parts" : [
|
||||||
|
{
|
||||||
|
"filesystem" : "ext4",
|
||||||
|
"type" : "p",
|
||||||
|
"start" : "4096",
|
||||||
|
"end" : "-1"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"uploads" : [
|
||||||
|
{
|
||||||
|
"part" : "1",
|
||||||
|
"target" : "/root-user-crypted-net.ks",
|
||||||
|
"source" : "root-user-crypted-net-9.ks"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"part" : "1",
|
"part" : "1",
|
||||||
|
|
17
uploads/root-user-crypted-net-8.ks
Normal file
17
uploads/root-user-crypted-net-8.ks
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
bootloader --location=mbr
|
||||||
|
network --device=link --activate --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 --iscrypted $6$ansiogjasd0io9u3$9E1vMbLbXW14grtguedFGVjvhyBz1T.KIA3MJl1SWnGbtTpiXIAjbazIQAUKRNkNIEmd3mI0NCkFIVBrN41fZ.
|
||||||
|
user --name=test --password=$6$ansioasgfgadsghd$O8O8zom5hx.V8ib1jV91xuvIgYqA2b99tzhibkk3URITdCrDtbRbwJjMK1kW4l0/9W0brraGC4NUBtDoGv4Kl. --iscrypted
|
||||||
|
|
||||||
|
reboot
|
||||||
|
|
||||||
|
%packages
|
||||||
|
@core
|
||||||
|
%end
|
Loading…
Reference in a new issue