mirror of
https://pagure.io/fedora-kickstarts.git
synced 2024-11-07 08:54:22 +00:00
198011f976
First, strip the "minimization" parts out of fedora-live-base.ks, and move them into fedora-live-minimization.ks. All previous consumers of fedora-live-base.ks are updated. The old fedora-live-base.ks was conflating two entirely different things: * A live-based image which can be used to install * Stripping some random bits to fit onto a CD The previous fedora-livecd-desktop is now fedora-live-desktop.ks. The new file fedora-livecd-desktop.ks is actually further minimizations on top of fedora-live-desktop.ks. Split up these two concepts so that fedora-live-desktop is *THE* desktop. What we expect everyone to have as a base, and the exact same set of packages should be installed by Standalone Anaconda (DVD) as well. Then, we have minimization hacks in fedora-live-desktop-cd.ks. Over time, we should be shrinking the default install and making it more just-in-time, by e.g. having many more things use the PackageKit library to pull in components as needed.
66 lines
1.0 KiB
Plaintext
66 lines
1.0 KiB
Plaintext
# Desktop with customizationst to fit in a CD sized image (package removals, etc.)
|
|
# Maintained by the Fedora Desktop SIG:
|
|
# http://fedoraproject.org/wiki/SIGs/Desktop
|
|
# mailto:fedora-desktop-list@fedoraproject.org
|
|
|
|
%include fedora-live-desktop.ks
|
|
%include fedora-live-minimization.ks
|
|
|
|
%packages
|
|
# First, no office.
|
|
-openoffice.org-*
|
|
|
|
# Temporary list of things removed from comps but not synced yet
|
|
-specspo
|
|
-xsane
|
|
|
|
# dictionaries are big
|
|
-aspell-*
|
|
-hunspell-*
|
|
-man-pages*
|
|
-words
|
|
|
|
# save some space
|
|
-gnome-user-docs
|
|
-evolution-help
|
|
-gnome-games-help
|
|
-nss_db
|
|
-isdn4k-utils
|
|
-desktop-backgrounds-basic
|
|
-constantine-backgrounds-extras
|
|
|
|
# things we don't need here
|
|
-seahorse
|
|
-alacarte
|
|
-krb5-auth-dialog
|
|
-krb5-workstation
|
|
-pam_krb5
|
|
-quota
|
|
-acpid
|
|
-nano
|
|
-smartmontools
|
|
-minicom
|
|
-dos2unix
|
|
-finger
|
|
-ftp
|
|
-jwhois
|
|
-mtr
|
|
-pinfo
|
|
-rsh
|
|
-telnet
|
|
-unix2dos
|
|
-nfs-utils
|
|
-ypbind
|
|
-yp-tools
|
|
-rpcbind
|
|
|
|
# drop some system-config things
|
|
-system-config-boot
|
|
-system-config-language
|
|
-system-config-lvm
|
|
-system-config-network
|
|
-system-config-rootpassword
|
|
-system-config-services
|
|
-policycoreutils-gui
|
|
%end
|