-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use proper configuration for image ISO
- Loading branch information
1 parent
47f9fc9
commit 99f6a58
Showing
1 changed file
with
7 additions
and
19 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,19 @@ | ||
[customizations.installer.kickstart] | ||
contents = """ | ||
graphical --non-interactive | ||
lang en_US.UTF-8 | ||
zerombr | ||
clearpart --all --initlabel --disklabel=gpt | ||
autopart --noswap --type xfs | ||
network --bootproto=dhcp --device=link --activate --onboot=on | ||
timezone --utc America/New_York | ||
firstboot --enable | ||
reboot | ||
%post --nochroot | ||
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo | ||
flatpak install flathub com.github.tchx84.Flatseal -y | ||
%post | ||
bootc switch --mutate-in-place --transport registry ghcr.io/centos-workstation/main:latest | ||
%end | ||
""" | ||
|
||
[customizations.installer.modules] | ||
enable = [ | ||
"org.fedoraproject.Anaconda.Modules.Localization", | ||
"org.fedoraproject.Anaconda.Modules.Storage" | ||
] | ||
disable = [ | ||
"org.fedoraproject.Anaconda.Modules.Network", | ||
"org.fedoraproject.Anaconda.Modules.Payloads", | ||
"org.fedoraproject.Anaconda.Modules.Runtime", | ||
"org.fedoraproject.Anaconda.Modules.Security", | ||
"org.fedoraproject.Anaconda.Modules.Services", | ||
"org.fedoraproject.Anaconda.Modules.Storage", | ||
"org.fedoraproject.Anaconda.Modules.Users", | ||
"org.fedoraproject.Anaconda.Modules.Subscription", | ||
"org.fedoraproject.Anaconda.Modules.Timezone", | ||
"org.fedoraproject.Anaconda.Modules.Users" | ||
"org.fedoraproject.Anaconda.Modules.Timezone" | ||
] |