mirror of
https://pagure.io/fedora-qa/createhdds.git
synced 2024-11-10 18:14:21 +00:00
Compare commits
2 Commits
9a666a619d
...
94d12b6394
Author | SHA1 | Date | |
---|---|---|---|
|
94d12b6394 | ||
|
b2c7b82ccc |
@ -319,10 +319,6 @@ class VirtInstallImage(object):
|
||||
loctmp = "https://download.fedoraproject.org/pub/{0}/releases/{1}/{2}/{3}/os/"
|
||||
ksfile = self.kickstart_file
|
||||
xargs = "inst.ks=file:/{0}".format(ksfile)
|
||||
if str(self.release) == '35':
|
||||
# we need this for installs to work with updated systemd:
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=2019579#c24
|
||||
xargs += " inst.updates=https://rvykydal.fedorapeople.org/update-images/updates.f35-2019579-resolvconf.img"
|
||||
args = ["virt-install", "--disk", "size={0},path={1}".format(self.size, tmpfile),
|
||||
"--os-variant", shortid, "-x", xargs, "--initrd-inject",
|
||||
"{0}/{1}".format(SCRIPTDIR, ksfile), "--location",
|
||||
|
24
desktop-38.ks
Normal file
24
desktop-38.ks
Normal file
@ -0,0 +1,24 @@
|
||||
bootloader --location=mbr
|
||||
network --bootproto=dhcp
|
||||
url --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||
repo --name=updates --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
||||
repo --name=ptyprocess --baseurl=https://fedorapeople.org/groups/qa/openqa-repos/ptyprocess/
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc America/New_York
|
||||
clearpart --all
|
||||
autopart
|
||||
rootpw --plaintext weakpassword
|
||||
user --name=test --password=weakpassword --plaintext --groups wheel
|
||||
firstboot --enable
|
||||
poweroff
|
||||
|
||||
%packages
|
||||
@^workstation-product-environment
|
||||
-selinux-policy-minimum
|
||||
%end
|
||||
|
||||
%post
|
||||
authselect enable-feature with-fingerprint
|
||||
touch $INSTALL_ROOT/home/home_preserved
|
||||
%end
|
30
kde-38.ks
Normal file
30
kde-38.ks
Normal file
@ -0,0 +1,30 @@
|
||||
bootloader --location=mbr
|
||||
network --bootproto=dhcp
|
||||
url --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||
repo --name=updates --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
||||
repo --name=ptyprocess --baseurl=https://fedorapeople.org/groups/qa/openqa-repos/ptyprocess/
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc America/New_York
|
||||
clearpart --all
|
||||
autopart
|
||||
rootpw --plaintext weakpassword
|
||||
user --name=test --password=weakpassword --plaintext --groups wheel
|
||||
poweroff
|
||||
|
||||
%packages
|
||||
@^kde-desktop-environment
|
||||
# these are all in the KDE live image, we want to match that as it's
|
||||
# the most common KDE deployment method
|
||||
@firefox
|
||||
@kde-apps
|
||||
@kde-media
|
||||
@kde-office
|
||||
@networkmanager-submodules
|
||||
fedora-release-kde
|
||||
falkon
|
||||
|
||||
imsettings-qt
|
||||
-initial-setup
|
||||
-initial-setup-gui
|
||||
%end
|
16
minimal-38.ks
Normal file
16
minimal-38.ks
Normal file
@ -0,0 +1,16 @@
|
||||
bootloader --location=mbr
|
||||
network --bootproto=dhcp
|
||||
url --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||
repo --name=updates --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
||||
repo --name=ptyprocess --baseurl=https://fedorapeople.org/groups/qa/openqa-repos/ptyprocess/
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc America/New_York
|
||||
clearpart --all
|
||||
autopart
|
||||
rootpw weakpassword
|
||||
poweroff
|
||||
|
||||
%packages
|
||||
@core
|
||||
%end
|
18
server-38.ks
Normal file
18
server-38.ks
Normal file
@ -0,0 +1,18 @@
|
||||
bootloader --location=mbr
|
||||
network --bootproto=dhcp
|
||||
url --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||
repo --name=updates --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
||||
repo --name=ptyprocess --baseurl=https://fedorapeople.org/groups/qa/openqa-repos/ptyprocess/
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc America/New_York
|
||||
clearpart --all
|
||||
autopart
|
||||
rootpw weakpassword
|
||||
user --name=test --password=weakpassword --plaintext --groups wheel
|
||||
poweroff
|
||||
|
||||
%packages
|
||||
@^server-product-environment
|
||||
plymouth-system-theme
|
||||
%end
|
Loading…
Reference in New Issue
Block a user