mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-12-09 00:20:31 +08:00
Compare commits
81 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c6112064c0 | ||
|
|
352a416c61 | ||
|
|
922fff0b59 | ||
|
|
91a9117bc4 | ||
|
|
07ed9c93b2 | ||
|
|
8f0370b13f | ||
|
|
41845d3dc4 | ||
|
|
70e4580977 | ||
|
|
c6f36e4c10 | ||
|
|
c8ddd8dc4e | ||
|
|
09ac8634dd | ||
|
|
fede4b181c | ||
|
|
8c563ee734 | ||
|
|
77ea37a424 | ||
|
|
d3410ae947 | ||
|
|
a382d63c17 | ||
|
|
74f896bdbf | ||
|
|
33e214ee06 | ||
|
|
51673c1ddc | ||
|
|
c430042f08 | ||
|
|
24e8c12302 | ||
|
|
fe5b6843ac | ||
|
|
9b40e37957 | ||
|
|
56bc67430b | ||
|
|
41b3b4dea6 | ||
|
|
adfe66c38f | ||
|
|
ab82d07e4f | ||
|
|
8bf40fdc8e | ||
|
|
6f76dabb74 | ||
|
|
0741647868 | ||
|
|
681365531c | ||
|
|
1bdc87189a | ||
|
|
9a57bcfb07 | ||
|
|
d275ae9403 | ||
|
|
6aa8533f0e | ||
|
|
32e066e039 | ||
|
|
1cbf4f481f | ||
|
|
e853d96f22 | ||
|
|
bb14cdd406 | ||
|
|
ff93964670 | ||
|
|
2dfb8c0758 | ||
|
|
7492604654 | ||
|
|
1288d6007d | ||
|
|
96cf7a22e5 | ||
|
|
b9dc4f5f49 | ||
|
|
045b630a4e | ||
|
|
4df45db78e | ||
|
|
6d05550b86 | ||
|
|
573d47ed00 | ||
|
|
61239d49f4 | ||
|
|
1f41edbb13 | ||
|
|
62a0e57497 | ||
|
|
e51dfb813a | ||
|
|
c6f9b71b37 | ||
|
|
217620ac55 | ||
|
|
987c05cc5e | ||
|
|
8f0b1a1f68 | ||
|
|
d26fba8808 | ||
|
|
d96f923c04 | ||
|
|
6dfda6e355 | ||
|
|
f3b92ac9e0 | ||
|
|
528f3500f2 | ||
|
|
c9fa0ffb82 | ||
|
|
9562f29b46 | ||
|
|
aa0ea4aa4d | ||
|
|
c08f8c215f | ||
|
|
5664467ce1 | ||
|
|
cfd1288c29 | ||
|
|
e1715dc151 | ||
|
|
431bc90632 | ||
|
|
4fcffa3b92 | ||
|
|
aaa3151692 | ||
|
|
5ee23ccea9 | ||
|
|
f7b98bb655 | ||
|
|
29f179c805 | ||
|
|
947fd69d5f | ||
|
|
da24aef084 | ||
|
|
58345f2cc3 | ||
|
|
da40dc8382 | ||
|
|
1f12485e42 | ||
|
|
2be322d626 |
@@ -23,6 +23,8 @@ services --enabled=ssh,NetworkManager,avahi-daemon,rsyslog,chronyd --disabled=ne
|
||||
kernel
|
||||
kernel-lpae
|
||||
|
||||
dracut-config-generic
|
||||
|
||||
chrony
|
||||
arm-boot-config
|
||||
extlinux-bootloader
|
||||
@@ -48,6 +50,16 @@ uboot-wandboard_quad
|
||||
|
||||
%post
|
||||
|
||||
# work around for poor key import UI in PackageKit
|
||||
rm -f /var/lib/rpm/__db*
|
||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
||||
basearch=armhfp
|
||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||
echo "Packages within this LiveCD"
|
||||
rpm -qa
|
||||
# Note that running rpm recreates the rpm db files which aren't needed or wanted
|
||||
rm -f /var/lib/rpm/__db*
|
||||
|
||||
# Because memory is scarce resource in most arm systems we are differing from the Fedora
|
||||
# default of having /tmp on tmpfs.
|
||||
echo "Disabling tmpfs for /tmp."
|
||||
|
||||
@@ -21,7 +21,7 @@ rootpw --lock --iscrypted locked
|
||||
|
||||
firewall --disabled
|
||||
|
||||
bootloader --timeout=1 --append="console=ttyS0,115200n8 console=tty0" extlinux
|
||||
bootloader --timeout=1 --append="console=tty1 console=ttyS0,115200n8" extlinux
|
||||
|
||||
network --bootproto=dhcp --device=eth0 --onboot=on
|
||||
services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||
@@ -29,7 +29,7 @@ services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config
|
||||
|
||||
zerombr
|
||||
clearpart --all
|
||||
part / --size 2048 --fstype ext4
|
||||
part / --size 1000 --fstype ext4
|
||||
|
||||
%include fedora-repo.ks
|
||||
|
||||
@@ -197,7 +197,7 @@ truncate -c -s 0 /var/log/yum.log
|
||||
|
||||
echo "Import RPM GPG key"
|
||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
||||
basearch=$(uname -m)
|
||||
basearch=$(uname -i)
|
||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||
|
||||
echo "Packages within this cloud image:"
|
||||
|
||||
@@ -20,12 +20,4 @@ nss-mdns
|
||||
# https://lists.fedoraproject.org/pipermail/devel/2013-July/186796.html
|
||||
-rsyslog
|
||||
|
||||
# Remove a few apps that are being presented as featured apps in
|
||||
# gnome-software
|
||||
-transmission-gtk
|
||||
-simple-scan
|
||||
-gnome-photos
|
||||
-gnome-maps
|
||||
-gnome-weather
|
||||
|
||||
%end
|
||||
|
||||
99
fedora-install-cloud.ks
Normal file
99
fedora-install-cloud.ks
Normal file
@@ -0,0 +1,99 @@
|
||||
# Kickstart file for composing the "Fedora" spin of Fedora (rawhide)
|
||||
# Maintained by the Fedora Release Engineering team:
|
||||
# https://fedoraproject.org/wiki/ReleaseEngineering
|
||||
# mailto:rel-eng@lists.fedoraproject.org
|
||||
|
||||
# Use a part of 'iso' to define how large you want your isos.
|
||||
# Only used when composing to more than one iso.
|
||||
# Default is 695 (megs), CD size.
|
||||
# Listed below is the size of a DVD if you wanted to split higher.
|
||||
#part iso --size=4998
|
||||
|
||||
# Add the repos you wish to use to compose here. At least one of them needs group data.
|
||||
|
||||
# Only uncomment repo commands in one of the two following sections.
|
||||
# Because the install kickstart doesn't use the updates repo and does
|
||||
# use the source repo, we can't just include fedora-repo.ks
|
||||
|
||||
# In the master branch the rawhide repo commands should be uncommented.
|
||||
repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
||||
repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch
|
||||
|
||||
# In non-master branches the fedora repo commands should be uncommented
|
||||
#repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||
#repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch
|
||||
|
||||
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
||||
# (default groups for the configured repos are added by --default)
|
||||
# @base got renamed to @standard, but @base is still included by default by pungi.
|
||||
%packages --default --nobase
|
||||
|
||||
# pungi is an inclusive depsolver so that multiple packages are brought
|
||||
# in to satisify dependencies and we don't always want that. So we use
|
||||
# an exclusion list to cut out things we don't want
|
||||
|
||||
-kernel*debug*
|
||||
-kernel-kdump*
|
||||
-kernel-tools*
|
||||
-syslog-ng*
|
||||
-astronomy-bookmarks
|
||||
-generic*
|
||||
-GConf2-dbus*
|
||||
-bluez-gnome
|
||||
# Periods cause problems in paterns, so replace with *s
|
||||
-java-1*8*0-openjdk
|
||||
-community-mysql*
|
||||
-jruby*
|
||||
|
||||
# core
|
||||
kernel*
|
||||
dracut-*
|
||||
|
||||
# Desktops
|
||||
|
||||
## common stuff
|
||||
@base-x
|
||||
@guest-desktop-agents
|
||||
@guest-agents
|
||||
@standard
|
||||
@core
|
||||
@dial-up
|
||||
@fonts
|
||||
@input-methods
|
||||
@multimedia
|
||||
@hardware-support
|
||||
@printing
|
||||
@admin-tools
|
||||
@basic-desktop
|
||||
|
||||
|
||||
@virtualization
|
||||
@web-server
|
||||
@mongodb
|
||||
@perl-web
|
||||
@php
|
||||
@python-web
|
||||
@rubyonrails
|
||||
@mysql
|
||||
@sql-server
|
||||
@jbossas
|
||||
|
||||
# Things needed for installation
|
||||
@anaconda-tools
|
||||
|
||||
# Langpacks
|
||||
autocorr-*
|
||||
eclipse-nls-*
|
||||
hunspell-*
|
||||
hyphen-*
|
||||
calligra-l10n-*
|
||||
kde-l10n-*
|
||||
libreoffice-langpack-*
|
||||
man-pages-*
|
||||
mythes-*
|
||||
-gimp-help-*
|
||||
|
||||
# Removals
|
||||
-PackageKit-zif
|
||||
-zif
|
||||
%end
|
||||
102
fedora-install-server.ks
Normal file
102
fedora-install-server.ks
Normal file
@@ -0,0 +1,102 @@
|
||||
# Kickstart file for composing the "Fedora" spin of Fedora (rawhide)
|
||||
# Maintained by the Fedora Release Engineering team:
|
||||
# https://fedoraproject.org/wiki/ReleaseEngineering
|
||||
# mailto:rel-eng@lists.fedoraproject.org
|
||||
|
||||
# Use a part of 'iso' to define how large you want your isos.
|
||||
# Only used when composing to more than one iso.
|
||||
# Default is 695 (megs), CD size.
|
||||
# Listed below is the size of a DVD if you wanted to split higher.
|
||||
#part iso --size=4998
|
||||
|
||||
# Add the repos you wish to use to compose here. At least one of them needs group data.
|
||||
|
||||
# Only uncomment repo commands in one of the two following sections.
|
||||
# Because the install kickstart doesn't use the updates repo and does
|
||||
# use the source repo, we can't just include fedora-repo.ks
|
||||
|
||||
# In the master branch the rawhide repo commands should be uncommented.
|
||||
repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
||||
repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch
|
||||
|
||||
# In non-master branches the fedora repo commands should be uncommented
|
||||
#repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||
#repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch
|
||||
|
||||
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
||||
# (default groups for the configured repos are added by --default)
|
||||
# @base got renamed to @standard, but @base is still included by default by pungi.
|
||||
%packages --default --nobase
|
||||
|
||||
# pungi is an inclusive depsolver so that multiple packages are brought
|
||||
# in to satisify dependencies and we don't always want that. So we use
|
||||
# an exclusion list to cut out things we don't want
|
||||
|
||||
-kernel*debug*
|
||||
-kernel-kdump*
|
||||
-kernel-tools*
|
||||
-syslog-ng*
|
||||
-astronomy-bookmarks
|
||||
-generic*
|
||||
-GConf2-dbus*
|
||||
-bluez-gnome
|
||||
# Periods cause problems in paterns, so replace with *s
|
||||
-java-1*8*0-openjdk
|
||||
-community-mysql*
|
||||
-jruby*
|
||||
|
||||
# core
|
||||
kernel*
|
||||
dracut-*
|
||||
|
||||
# Desktops
|
||||
|
||||
## common stuff
|
||||
@base-x
|
||||
@guest-agents
|
||||
@standard
|
||||
@core
|
||||
@input-methods
|
||||
@multimedia
|
||||
@hardware-support
|
||||
@admin-tools
|
||||
@basic-desktop
|
||||
|
||||
# Workstation
|
||||
@eclipse
|
||||
@development-libs
|
||||
@development-tools
|
||||
@c-development
|
||||
@rpm-development-tools
|
||||
@fedora-packager
|
||||
@virtualization
|
||||
@web-server
|
||||
@mongodb
|
||||
@perl-web
|
||||
@php
|
||||
@python-web
|
||||
@rubyonrails
|
||||
@mysql
|
||||
@sql-server
|
||||
@design-suite
|
||||
@jbossas
|
||||
|
||||
# Things needed for installation
|
||||
@anaconda-tools
|
||||
|
||||
# Langpacks
|
||||
autocorr-*
|
||||
eclipse-nls-*
|
||||
hunspell-*
|
||||
hyphen-*
|
||||
calligra-l10n-*
|
||||
kde-l10n-*
|
||||
libreoffice-langpack-*
|
||||
man-pages-*
|
||||
mythes-*
|
||||
-gimp-help-*
|
||||
|
||||
# Removals
|
||||
-PackageKit-zif
|
||||
-zif
|
||||
%end
|
||||
@@ -16,12 +16,12 @@
|
||||
# use the source repo, we can't just include fedora-repo.ks
|
||||
|
||||
# In the master branch the rawhide repo commands should be uncommented.
|
||||
#repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
||||
#repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch
|
||||
repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
||||
repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch
|
||||
|
||||
# In non-master branches the fedora repo commands should be uncommented
|
||||
repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||
repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch
|
||||
#repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||
#repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch
|
||||
|
||||
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
||||
# (default groups for the configured repos are added by --default)
|
||||
@@ -7,10 +7,6 @@
|
||||
### The KDE-Desktop
|
||||
|
||||
### fixes
|
||||
# sddm->kdm, (temporary) so don't have to wait on comps changes
|
||||
-sddm
|
||||
-sddm-kcm
|
||||
kdm
|
||||
|
||||
# use kde-print-manager instead of system-config-printer
|
||||
-system-config-printer
|
||||
|
||||
@@ -280,6 +280,8 @@ systemctl enable tmp.mount
|
||||
|
||||
# work around for poor key import UI in PackageKit
|
||||
rm -f /var/lib/rpm/__db*
|
||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
||||
basearch=$(uname -i)
|
||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||
echo "Packages within this LiveCD"
|
||||
rpm -qa
|
||||
@@ -301,7 +303,7 @@ rm -f /core*
|
||||
|
||||
|
||||
%post --nochroot
|
||||
cp $INSTALL_ROOT/usr/share/doc/*-release-*/GPL $LIVE_ROOT/GPL
|
||||
cp $INSTALL_ROOT/usr/share/doc/*-release/GPL $LIVE_ROOT/GPL
|
||||
|
||||
# only works on x86, x86_64
|
||||
if [ "$(uname -i)" = "i386" -o "$(uname -i)" = "x86_64" ]; then
|
||||
|
||||
@@ -31,8 +31,8 @@ gimp-gap
|
||||
gimp-paint-studio
|
||||
gimp-high-pass-filter
|
||||
gimp-normalmap
|
||||
gimp-paint-studio
|
||||
gimp-resynthesizer
|
||||
gimp-separate+
|
||||
gpick
|
||||
GREYCstoration-gimp
|
||||
hugin
|
||||
@@ -59,10 +59,6 @@ filezilla
|
||||
audacity
|
||||
pitivi
|
||||
|
||||
# system
|
||||
# gtk-recordmydesktop # dropped for space (#887991)
|
||||
# network-manager-applet #part of Gnome Desktop
|
||||
|
||||
# fonts
|
||||
aajohan-comfortaa-fonts
|
||||
adobe-source-sans-pro-fonts
|
||||
@@ -104,30 +100,30 @@ overpass-fonts
|
||||
#Override the favorite desktop application in Dash
|
||||
cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
|
||||
[org.gnome.shell]
|
||||
favorite-apps=['firefox.desktop', 'evolution.desktop', 'shotwell.desktop', 'gimp.desktop', 'inkscape.desktop', 'blender.desktop', 'libreoffice-writer.desktop', 'scribus.desktop', 'nautilus.desktop', 'bijiben.desktop', 'anaconda.desktop','list-design-tutorials.desktop']
|
||||
favorite-apps=['firefox.desktop', 'evolution.desktop', 'shotwell.desktop', 'gimp.desktop', 'inkscape.desktop', 'blender.desktop', 'libreoffice-writer.desktop', 'scribus.desktop', 'nautilus.desktop', 'bijiben.desktop', 'anaconda.desktop', 'list-design-tutorials.desktop']
|
||||
#Enable categories in Gnome Shell
|
||||
app-folder-categories=['Utilities', 'Sundry', 'Office', 'Network', 'Internet', 'Graphics', 'Games', 'Multimedia', 'System', 'Development', 'Accessories', 'System Settings', 'Other']
|
||||
FOE
|
||||
|
||||
# Add link to the Inkscape Course
|
||||
#cat >> /usr/share/applications/inkscape-course.desktop << FOE
|
||||
#[Desktop Entry]
|
||||
#Name=Introduction To Inkscape
|
||||
#GenericName=Inkscape Course
|
||||
#Comment=Materials from Máirín Duffy's Inkscape Class
|
||||
#Exec=xdg-open http://linuxgrrl.com/learn/Introduction_To_Inkscape
|
||||
#Type=Application
|
||||
#Icon=fedora-logo-icon
|
||||
#Categories=Graphics;Documentation;
|
||||
#FOE
|
||||
#chmod a+x /usr/share/applications/inkscape-course.desktop
|
||||
cat >> /usr/share/applications/inkscape-course.desktop << FOE
|
||||
[Desktop Entry]
|
||||
Name=Introduction To Inkscape
|
||||
GenericName=Inkscape Course
|
||||
Comment=Materials from Máirín Duffy's Inkscape Class
|
||||
Exec=xdg-open http://linuxgrrl.com/learn/Introduction_To_Inkscape
|
||||
Type=Application
|
||||
Icon=fedora-logo-icon
|
||||
Categories=Graphics;Documentation;
|
||||
FOE
|
||||
chmod a+x /usr/share/applications/inkscape-course.desktop
|
||||
|
||||
# Add link to lists of tutorials
|
||||
cat >> /usr/share/applications/list-design-tutorials.desktop << FOE
|
||||
[Desktop Entry]
|
||||
Name=List of Design Tutorials
|
||||
GenericName=List of design tutorials
|
||||
Comment=Reference of graphic and web design related tutorials
|
||||
Name=List of design tutorials
|
||||
GenericName=List of Tutorials for Designers
|
||||
Comment=Reference of Design Related Tutorials
|
||||
Exec=xdg-open http://fedoraproject.org/wiki/Design_Suite/Tutorials
|
||||
Type=Application
|
||||
Icon=applications-graphics
|
||||
|
||||
@@ -40,12 +40,11 @@ chmod a+x /home/liveuser/.xsession
|
||||
chown liveuser:liveuser /home/liveuser/.xsession
|
||||
|
||||
# set up autologin for user liveuser
|
||||
sed -i 's/#AutoLoginEnable=true/AutoLoginEnable=true/' /etc/kde/kdm/kdmrc
|
||||
sed -i 's/#AutoLoginUser=fred/AutoLoginUser=liveuser/' /etc/kde/kdm/kdmrc
|
||||
sed -i 's/^AutoUser=.*/AutoUser=liveuser/' /etc/sddm.conf
|
||||
|
||||
# set up user liveuser as default user and preselected user
|
||||
sed -i 's/#PreselectUser=Default/PreselectUser=Default/' /etc/kde/kdm/kdmrc
|
||||
sed -i 's/#DefaultUser=johndoe/DefaultUser=liveuser/' /etc/kde/kdm/kdmrc
|
||||
sed -i 's/^LastUser=.*/LastUser=liveuser/' /etc/sddm.conf
|
||||
sed -i 's/^LastSession=.*/LastSession=kde-plasma.desktop/' /etc/sddm.conf
|
||||
|
||||
# add liveinst.desktop to favorites menu
|
||||
mkdir -p /home/liveuser/.kde/share/config/
|
||||
|
||||
@@ -11,8 +11,27 @@
|
||||
-planner
|
||||
|
||||
# Drop things for size
|
||||
-@3d-printing
|
||||
-brasero
|
||||
-bluez
|
||||
-bluez-cups
|
||||
-@dial-up
|
||||
-dnf
|
||||
-firefox
|
||||
-gnome-bluetooth-libs
|
||||
-gnome-icon-theme-symbolic
|
||||
-gnome-software
|
||||
-gnome-user-docs
|
||||
-@guest-desktop-agents
|
||||
-@libreoffice
|
||||
-@mate-applications
|
||||
-mate-bluetooth
|
||||
-mate-icon-theme-faenza
|
||||
-transmission-gtk
|
||||
|
||||
# Drop oversized fonts that aren't needed
|
||||
-cjkuni-uming-fonts
|
||||
-wqy-zenhei-fonts
|
||||
|
||||
# A web browser would be nice for a live cd
|
||||
midori
|
||||
@@ -65,8 +84,8 @@ midori
|
||||
-ntsysv
|
||||
|
||||
# Drop some system-config things
|
||||
-system-config-boot
|
||||
-system-config-language
|
||||
-system-config-printer
|
||||
-system-config-rootpassword
|
||||
-system-config-services
|
||||
-policycoreutils-gui
|
||||
@@ -78,4 +97,3 @@ midori
|
||||
rm -f /usr/share/icons/HighContrast/icon-theme.cache
|
||||
|
||||
%end
|
||||
|
||||
|
||||
@@ -24,15 +24,14 @@ part / --size 10240
|
||||
%packages
|
||||
@xfce-desktop
|
||||
@xfce-apps
|
||||
#@xfce-extra-plugins
|
||||
#@xfce-media
|
||||
#@xfce-office
|
||||
#@firefox
|
||||
|
||||
# Security tools (not ready at the moment)
|
||||
@security-lab
|
||||
security-menus
|
||||
|
||||
# unlock default keyring. FIXME: Should probably be done in comps
|
||||
gnome-keyring-pam
|
||||
|
||||
# save some space
|
||||
-autofs
|
||||
-acpid
|
||||
@@ -41,13 +40,16 @@ security-menus
|
||||
-realmd # only seems to be used in GNOME
|
||||
-PackageKit* # we switched to yumex, so we don't need this
|
||||
-aspell-* # dictionaries are big
|
||||
-gnumeric
|
||||
-foomatic-db-ppds
|
||||
-foomatic
|
||||
-stix-fonts
|
||||
-ibus-typing-booster
|
||||
-xfce4-sensors-plugin
|
||||
-man-pages-*
|
||||
|
||||
# drop some system-config things
|
||||
-system-config-boot
|
||||
#-system-config-network
|
||||
-system-config-rootpassword
|
||||
#-system-config-services
|
||||
-policycoreutils-gui
|
||||
|
||||
# exclude some packages to save some space
|
||||
|
||||
@@ -26,8 +26,8 @@ rm -f /var/lib/rpm/__db*
|
||||
|
||||
# Get proper release naming in the control panel
|
||||
cat >> /boot/olpc_build << EOF
|
||||
Sugar on a Stick 10
|
||||
Fedora release 20 (Heisenbug)
|
||||
Sugar on a Stick 10 (Unknown)
|
||||
Fedora release 20 (Rawhide)
|
||||
EOF
|
||||
|
||||
# Add our activities to the favorites
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
%packages
|
||||
-realmd # only seems to be used in GNOME
|
||||
-PackageKit* # we switched to yumex, so we don't need this
|
||||
-ConsoleKit # ConsoleKit is deprecated
|
||||
-ConsoleKit-x11 # ConsoleKit is deprecated
|
||||
firefox
|
||||
@mate
|
||||
compiz
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# Exactly one of the following should be uncommented
|
||||
|
||||
# For the master branch the following should be uncommented
|
||||
#%include fedora-repo-rawhide.ks
|
||||
%include fedora-repo-rawhide.ks
|
||||
|
||||
# For non-master branches the following should be uncommented
|
||||
%include fedora-repo-not-rawhide.ks
|
||||
# %include fedora-repo-not-rawhide.ks
|
||||
|
||||
Reference in New Issue
Block a user