mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-12-12 10:00:30 +08:00
Compare commits
39 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
125219301c | ||
|
|
cbb26ee210 | ||
|
|
bbdcdea977 | ||
|
|
747ea887ce | ||
|
|
d07dcbc903 | ||
|
|
0b9cfd0610 | ||
|
|
d2984eca0c | ||
|
|
04ec5daa6b | ||
|
|
d35b26ba04 | ||
|
|
85e047bbe7 | ||
|
|
7523a5030d | ||
|
|
4aa36b37f9 | ||
|
|
579cdeeac1 | ||
|
|
d44fc9d737 | ||
|
|
ac0bcc76c4 | ||
|
|
10259ee324 | ||
|
|
0eb6b1bf31 | ||
|
|
cf6ffa1988 | ||
|
|
ab42e2ad26 | ||
|
|
eab5b9ed44 | ||
|
|
8f3beacf10 | ||
|
|
6bf1907a10 | ||
|
|
c699a0b7eb | ||
|
|
20a9971686 | ||
|
|
7c09012288 | ||
|
|
3f3d02bc82 | ||
|
|
d0f9999891 | ||
|
|
0d9ba65717 | ||
|
|
2cf009041d | ||
|
|
982d2c2482 | ||
|
|
f39bf4894d | ||
|
|
fa67a85c02 | ||
|
|
7496dc558f | ||
|
|
fbd0a17e7c | ||
|
|
b947d49831 | ||
|
|
9e226727b9 | ||
|
|
eba9ca6a6f | ||
|
|
f77caba988 | ||
|
|
ebff6b00b9 |
1
.sparkleshare
Normal file
1
.sparkleshare
Normal file
@@ -0,0 +1 @@
|
|||||||
|
d6afc629dc9311ebd79b4cedb2775531065ecb05
|
||||||
9
SparkleShare.txt
Normal file
9
SparkleShare.txt
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
Congratulations, you've successfully created a SparkleShare repository!
|
||||||
|
|
||||||
|
Any files you add or change in this folder will be automatically synced to
|
||||||
|
ssh://luya@git.fedorahosted.org/git/spin-kickstarts.git and everyone connected to it.
|
||||||
|
|
||||||
|
SparkleShare is an Open Source software program that helps people collaborate and
|
||||||
|
share files. If you like what we do, consider buying us a beer: http://www.sparkleshare.org/
|
||||||
|
|
||||||
|
Have fun! :)
|
||||||
@@ -23,6 +23,7 @@ services --enabled=ssh,NetworkManager,avahi-daemon,rsyslog,chronyd --disabled=ne
|
|||||||
@standard
|
@standard
|
||||||
@hardware-support
|
@hardware-support
|
||||||
@dial-up
|
@dial-up
|
||||||
|
@fedora-release-nonproduct
|
||||||
|
|
||||||
kernel
|
kernel
|
||||||
|
|
||||||
@@ -51,7 +52,7 @@ rm -f /var/lib/rpm/__db*
|
|||||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
||||||
basearch=armhfp
|
basearch=armhfp
|
||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||||
echo "Packages within this LiveCD"
|
echo "Packages within this ARM disk image"
|
||||||
rpm -qa
|
rpm -qa
|
||||||
# Note that running rpm recreates the rpm db files which aren't needed or wanted
|
# Note that running rpm recreates the rpm db files which aren't needed or wanted
|
||||||
rm -f /var/lib/rpm/__db*
|
rm -f /var/lib/rpm/__db*
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
%include fedora-arm-xbase.ks
|
%include fedora-arm-xbase.ks
|
||||||
%include fedora-kde-packages.ks
|
%include fedora-kde-packages.ks
|
||||||
|
|
||||||
part / --size=4000 --fstype ext4
|
part / --size=5000 --fstype ext4
|
||||||
|
|
||||||
%post
|
%post
|
||||||
echo -n "Enabling initial-setup gui mode on startup"
|
echo -n "Enabling initial-setup gui mode on startup"
|
||||||
|
|||||||
29
fedora-arm-server.ks
Normal file
29
fedora-arm-server.ks
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
|
||||||
|
%packages
|
||||||
|
-@fedora-release-nonproduct
|
||||||
|
-@dial-up
|
||||||
|
# install the default groups for the server evironment since installing the environment is not working
|
||||||
|
@server-product
|
||||||
|
@standard
|
||||||
|
@headless-management
|
||||||
|
@container-management
|
||||||
|
@domain-client
|
||||||
|
-initial-setup-gui
|
||||||
|
-generic-release*
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
# setup systemd to boot to the right runlevel
|
||||||
|
echo -n "Setting default runlevel to multiuser text mode"
|
||||||
|
rm -f /etc/systemd/system/default.target
|
||||||
|
ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
|
||||||
|
echo .
|
||||||
|
|
||||||
|
echo -n "Enabling initial-setup text mode on startup"
|
||||||
|
ln -s /usr/lib/systemd/system/initial-setup-text.service /etc/systemd/system/multi-user.target.wants/initial-setup-text.service
|
||||||
|
echo .
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
31
fedora-cloud-atomic-pxetolive.ks
Normal file
31
fedora-cloud-atomic-pxetolive.ks
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
# PXE-to-Live Atomic: PXE boot directly into a running Atomic Host
|
||||||
|
# https://fedoraproject.org/wiki/Changes/AtomicHost
|
||||||
|
|
||||||
|
lang en_US.UTF-8
|
||||||
|
keyboard us
|
||||||
|
timezone America/New_York
|
||||||
|
zerombr
|
||||||
|
clearpart --all --initlabel
|
||||||
|
rootpw --lock --iscrypted locked
|
||||||
|
user --name=none
|
||||||
|
bootloader --timeout=1
|
||||||
|
network --bootproto=dhcp --device=link --activate
|
||||||
|
# We are only able to install atomic with separate /boot partition currently
|
||||||
|
part / --fstype="ext4" --size=6000
|
||||||
|
part /boot --size=500 --fstype="ext4"
|
||||||
|
shutdown
|
||||||
|
services --disabled=docker-storage-setup,network
|
||||||
|
services --enabled=NetworkManager,sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
|
|
||||||
|
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=http://kojipkgs.fedoraproject.org/mash/atomic/22/ --ref=fedora-atomic/f22/x86_64/docker-host
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
# Ensure the root password is locked, we use cloud-init
|
||||||
|
passwd -l root
|
||||||
|
userdel -r none
|
||||||
|
|
||||||
|
# We copy content of separate /boot partition to root part when building live squashfs image,
|
||||||
|
# and we don't want systemd to try to mount it when pxe booting
|
||||||
|
cat /dev/null > /etc/fstab
|
||||||
|
%end
|
||||||
28
fedora-cloud-atomic-vagrant.ks
Normal file
28
fedora-cloud-atomic-vagrant.ks
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
# Like the Atomic cloud image, but tuned for vagrant. Enable
|
||||||
|
# the vagrant user, disable cloud-init.
|
||||||
|
|
||||||
|
%include fedora-cloud-atomic.ks
|
||||||
|
|
||||||
|
services --disabled=cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
|
|
||||||
|
user --name=vagrant --password=vagrant
|
||||||
|
|
||||||
|
%post --erroronfail
|
||||||
|
|
||||||
|
# Work around cloud-init being both disabled and enabled; need
|
||||||
|
# to refactor to a common base.
|
||||||
|
rm /etc/systemd/system/multi-user.target.wants/cloud-init* /etc/systemd/system/multi-user.target.wants/cloud-config*
|
||||||
|
|
||||||
|
# Vagrant setup
|
||||||
|
sed -i 's,Defaults\\s*requiretty,Defaults !requiretty,' /etc/sudoers
|
||||||
|
echo 'vagrant ALL=NOPASSWD: ALL' > /etc/sudoers.d/vagrant-nopasswd
|
||||||
|
sed -i 's/.*UseDNS.*/UseDNS no/' /etc/ssh/sshd_config
|
||||||
|
mkdir -m 0700 -p ~vagrant/.ssh
|
||||||
|
cat > ~vagrant/.ssh/authorized_keys << EOKEYS
|
||||||
|
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6NF8iallvQVp22WDkTkyrtvp9eWW6A8YVr+kz4TjGYe7gHzIw+niNltGEFHzD8+v1I2YJ6oXevct1YeS0o9HZyN1Q9qgCgzUFtdOKLv6IedplqoPkcmF0aYet2PkEDo3MlTBckFXPITAMzF8dJSIFo9D8HfdOV0IAdx4O7PtixWKn5y2hMNG0zQPyUecp4pzC6kivAIhyfHilFR61RGL+GPXQ2MWZWFYbAGjyiYJnAmCP3NOTd0jMZEnDkbUvxhMmBYSdETk1rRgm+R4LOzFUGaHqHDLKLX+FIPKcF96hrucXzcWyLbIbEgE98OHlnVYCzRdK8jlqm8tehUc9c9WhQ== vagrant insecure public key
|
||||||
|
EOKEYS
|
||||||
|
chmod 600 ~vagrant/.ssh/authorized_keys
|
||||||
|
chown -R vagrant:vagrant ~vagrant/.ssh/
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ firewall --disabled
|
|||||||
|
|
||||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8"
|
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8"
|
||||||
|
|
||||||
network --bootproto=dhcp --device=eth0 --activate --onboot=on
|
network --bootproto=dhcp --device=link --activate --onboot=on
|
||||||
services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
|
|
||||||
zerombr
|
zerombr
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ firewall --disabled
|
|||||||
|
|
||||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8" --extlinux
|
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8" --extlinux
|
||||||
|
|
||||||
network --bootproto=dhcp --device=eth0 --activate --onboot=on
|
network --bootproto=dhcp --device=link --activate --onboot=on
|
||||||
services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
|
|
||||||
zerombr
|
zerombr
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
cmdline
|
cmdline
|
||||||
bootloader --location=none
|
bootloader --location=none
|
||||||
timezone America/New_York --isUtc --nontp
|
timezone --isUtc --nontp Etc/UTC
|
||||||
rootpw --plaintext qweqwe
|
rootpw --plaintext qweqwe
|
||||||
|
|
||||||
keyboard us
|
keyboard us
|
||||||
@@ -13,11 +13,13 @@ firewall --disable
|
|||||||
zerombr
|
zerombr
|
||||||
clearpart --all
|
clearpart --all
|
||||||
part / --size 3000 --fstype ext4
|
part / --size 3000 --fstype ext4
|
||||||
|
network --bootproto=dhcp --device=link --activate --onboot=on
|
||||||
reboot
|
reboot
|
||||||
|
|
||||||
%packages --excludedocs --instLangs=en --nocore
|
%packages --excludedocs --instLangs=en --nocore
|
||||||
bash
|
bash
|
||||||
fedora-release
|
fedora-release
|
||||||
|
rootfiles
|
||||||
vim-minimal
|
vim-minimal
|
||||||
yum
|
yum
|
||||||
#fakesystemd #TODO: waiting for review https://bugzilla.redhat.com/show_bug.cgi?id=1118740
|
#fakesystemd #TODO: waiting for review https://bugzilla.redhat.com/show_bug.cgi?id=1118740
|
||||||
@@ -43,7 +45,21 @@ basearch=$(uname -i)
|
|||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||||
|
|
||||||
rm -f /usr/lib/locale/locale-archive
|
rm -f /usr/lib/locale/locale-archive
|
||||||
|
|
||||||
|
#Setup locale properly
|
||||||
|
localedef -v -c -i en_US -f UTF-8 en_US.UTF-8
|
||||||
|
|
||||||
rm -rf /var/cache/yum/*
|
rm -rf /var/cache/yum/*
|
||||||
rm -f /tmp/ks-script*
|
rm -f /tmp/ks-script*
|
||||||
|
|
||||||
|
#Make it easier for systemd to run in Docker container
|
||||||
|
cp /usr/lib/systemd/system/dbus.service /etc/systemd/system/
|
||||||
|
sed -i 's/OOMScoreAdjust=-900//' /etc/systemd/system/dbus.service
|
||||||
|
|
||||||
|
#Mask mount units and getty service so that we don't get login prompt
|
||||||
|
systemctl mask systemd-remount-fs.service dev-hugepages.mount sys-fs-fuse-connections.mount systemd-logind.service getty.target console-getty.service
|
||||||
|
|
||||||
|
rm -f /etc/machine-id
|
||||||
|
rm -f /etc/fstab
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -57,6 +57,8 @@ dracut-*
|
|||||||
# Things needed for installation
|
# Things needed for installation
|
||||||
@anaconda-tools
|
@anaconda-tools
|
||||||
fedora-productimg-cloud
|
fedora-productimg-cloud
|
||||||
|
-fedora-productimg-server
|
||||||
|
-fedora-productimg-workstation
|
||||||
|
|
||||||
# Packages to enable server images to run in cloud environments
|
# Packages to enable server images to run in cloud environments
|
||||||
@cloud-server
|
@cloud-server
|
||||||
|
|||||||
@@ -28,6 +28,10 @@ repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirror
|
|||||||
# @base got renamed to @standard, but @base is still included by default by pungi.
|
# @base got renamed to @standard, but @base is still included by default by pungi.
|
||||||
%packages --default
|
%packages --default
|
||||||
|
|
||||||
|
-fedora-productimg-cloud
|
||||||
|
fedora-productimg-server
|
||||||
|
-fedora-productimg-workstation
|
||||||
|
|
||||||
# pungi is an inclusive depsolver so that multiple packages are brought
|
# 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
|
# 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
|
# an exclusion list to cut out things we don't want
|
||||||
@@ -68,13 +72,6 @@ dracut-*
|
|||||||
@core
|
@core
|
||||||
@hardware-support
|
@hardware-support
|
||||||
|
|
||||||
# Some development tools
|
|
||||||
@development-libs
|
|
||||||
@development-tools
|
|
||||||
@c-development
|
|
||||||
@rpm-development-tools
|
|
||||||
@fedora-packager
|
|
||||||
|
|
||||||
# Fedora Server.
|
# Fedora Server.
|
||||||
# Including this causes the fedora-release-server package to be included,
|
# Including this causes the fedora-release-server package to be included,
|
||||||
# which in turn enables server-product-environment, and due to to its priority
|
# which in turn enables server-product-environment, and due to to its priority
|
||||||
|
|||||||
@@ -44,6 +44,8 @@ kernel*
|
|||||||
|
|
||||||
# Things needed for installation
|
# Things needed for installation
|
||||||
@anaconda-tools
|
@anaconda-tools
|
||||||
|
-fedora-productimg-cloud
|
||||||
|
-fedora-productimg-server
|
||||||
fedora-productimg-workstation
|
fedora-productimg-workstation
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ auth --useshadow --enablemd5
|
|||||||
selinux --enforcing
|
selinux --enforcing
|
||||||
firewall --enabled --service=mdns
|
firewall --enabled --service=mdns
|
||||||
xconfig --startxonboot
|
xconfig --startxonboot
|
||||||
part / --size 3072 --fstype ext4
|
part / --size 4096 --fstype ext4
|
||||||
services --enabled=NetworkManager --disabled=network,sshd
|
services --enabled=NetworkManager --disabled=network,sshd
|
||||||
|
|
||||||
%include fedora-repo.ks
|
%include fedora-repo.ks
|
||||||
@@ -299,6 +299,12 @@ rm -f /core*
|
|||||||
# convince readahead not to collect
|
# convince readahead not to collect
|
||||||
# FIXME: for systemd
|
# FIXME: for systemd
|
||||||
|
|
||||||
|
# forcibly regenerate fontconfig cache (so long as this live image has
|
||||||
|
# fontconfig) - see #1169979
|
||||||
|
if [ -x /usr/bin/fc-cache ] ; then
|
||||||
|
fc-cache -f
|
||||||
|
fi
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# fedora-design-suite.ks
|
# fedora-design-suite.ks
|
||||||
# Based on Live Desktop
|
# Based on Live Workstation
|
||||||
# Description:
|
# Description:
|
||||||
# - A Spin targeted towards professional designers
|
# - A Spin targeted towards professional designers
|
||||||
# Website: http://fedoraproject.org/wiki/Design_Suite
|
# Website: http://fedoraproject.org/wiki/Design_Suite
|
||||||
@@ -16,12 +16,12 @@ part / --size 8192
|
|||||||
|
|
||||||
# graphics
|
# graphics
|
||||||
blender
|
blender
|
||||||
# add blender plugins
|
|
||||||
LuxRender-blender
|
LuxRender-blender
|
||||||
YafaRay-blender
|
YafaRay-blender
|
||||||
bluefish
|
bluefish
|
||||||
#cinepaint
|
#cinepaint
|
||||||
cmyktool
|
#cmyktool
|
||||||
|
colord-extra-profiles
|
||||||
darktable
|
darktable
|
||||||
dia
|
dia
|
||||||
entangle
|
entangle
|
||||||
@@ -38,27 +38,33 @@ gimp-normalmap
|
|||||||
gimp-resynthesizer
|
gimp-resynthesizer
|
||||||
gimp-separate+
|
gimp-separate+
|
||||||
gpick
|
gpick
|
||||||
# replaces GREYCStationary
|
GraphicsMagick
|
||||||
gmic-gimp
|
gmic-gimp
|
||||||
hugin
|
hugin
|
||||||
mypaint
|
ImageMagick
|
||||||
inkscape
|
inkscape
|
||||||
|
inkscape-sozi
|
||||||
|
inkscape-table
|
||||||
|
mypaint
|
||||||
nautilus-image-converter
|
nautilus-image-converter
|
||||||
optipng
|
optipng
|
||||||
phatch
|
phatch
|
||||||
screenruler
|
screenruler
|
||||||
simple-scan
|
simple-scan
|
||||||
scribus
|
scribus
|
||||||
colord-extra-profiles
|
shutter
|
||||||
synfigstudio
|
synfigstudio
|
||||||
xournal
|
xournal
|
||||||
|
|
||||||
# office
|
# office
|
||||||
vym
|
vym
|
||||||
|
pdfmod
|
||||||
pdfshuffler
|
pdfshuffler
|
||||||
|
|
||||||
# internet
|
# internet
|
||||||
filezilla
|
filezilla
|
||||||
|
sparkleshare
|
||||||
|
sshpass
|
||||||
|
|
||||||
# audio & video
|
# audio & video
|
||||||
audacity
|
audacity
|
||||||
@@ -69,9 +75,10 @@ aajohan-comfortaa-fonts
|
|||||||
adobe-source-sans-pro-fonts
|
adobe-source-sans-pro-fonts
|
||||||
campivisivi-titillium-fonts
|
campivisivi-titillium-fonts
|
||||||
lato-fonts
|
lato-fonts
|
||||||
|
open-sans-fonts
|
||||||
overpass-fonts
|
overpass-fonts
|
||||||
|
|
||||||
# removal of duplicated and unneeded applications
|
# removal of unneeded applications
|
||||||
-gnome-boxes
|
-gnome-boxes
|
||||||
-gthumb
|
-gthumb
|
||||||
-eog
|
-eog
|
||||||
@@ -84,9 +91,7 @@ overpass-fonts
|
|||||||
#Override the favorite desktop application in Dash
|
#Override the favorite desktop application in Dash
|
||||||
cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
|
cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
|
||||||
[org.gnome.shell]
|
[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', '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', 'Games', 'Sundry', 'Office', 'Network', 'Internet', 'Graphics', 'Multimedia', 'System', 'Development', 'Accessories', 'System Settings', 'wine-wine', 'Crossover', 'Crossover Games', 'Science', 'Education', 'Universal Access', 'Other']
|
|
||||||
FOE
|
FOE
|
||||||
|
|
||||||
# Add link to lists of tutorials
|
# Add link to lists of tutorials
|
||||||
@@ -102,10 +107,34 @@ Categories=Graphics;Documentation;
|
|||||||
FOE
|
FOE
|
||||||
chmod a+x /usr/share/applications/list-design-tutorials.desktop
|
chmod a+x /usr/share/applications/list-design-tutorials.desktop
|
||||||
|
|
||||||
|
# Add information about Fedora Design Suite
|
||||||
|
cat >> /usr/share/applications/fedora-design-suite.desktop << FOE
|
||||||
|
[Desktop Entry]
|
||||||
|
Name=About Design Team
|
||||||
|
GenericName=About Design Team
|
||||||
|
Comment=Wiki page of Design Team
|
||||||
|
Exec=xdg-open http://fedoraproject.org/wiki/Design_Suite
|
||||||
|
Type=Application
|
||||||
|
Icon=applications-internet
|
||||||
|
Categories=Documentation;
|
||||||
|
FOE
|
||||||
|
chmod a+x /usr/share/applications/fedora-design-suite.desktop
|
||||||
|
|
||||||
|
# Add information about Fedora Design Team
|
||||||
|
cat >> /usr/share/applications/fedora-design-team.desktop << FOE
|
||||||
|
[Desktop Entry]
|
||||||
|
Name=About Design Suite
|
||||||
|
GenericName=About Design Suite Wiki Page
|
||||||
|
Comment=Wiki page of Design Team
|
||||||
|
Exec=xdg-open http://fedoraproject.org/wiki/Design
|
||||||
|
Type=Application
|
||||||
|
Icon=applications-internet
|
||||||
|
Categories=Documentation;
|
||||||
|
FOE
|
||||||
|
chmod a+x /usr/share/applications/fedora-design-team.desktop
|
||||||
|
|
||||||
# rebuild schema cache with any overrides we installed
|
# rebuild schema cache with any overrides we installed
|
||||||
glib-compile-schemas /usr/share/glib-2.0/schemas
|
glib-compile-schemas /usr/share/glib-2.0/schemas
|
||||||
|
|
||||||
#EOF
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -42,12 +42,12 @@ chown liveuser:liveuser /home/liveuser/.xsession
|
|||||||
# set up autologin for user liveuser
|
# set up autologin for user liveuser
|
||||||
if [ -f /etc/sddm.conf ]; then
|
if [ -f /etc/sddm.conf ]; then
|
||||||
sed -i 's/^#User=.*/User=liveuser/' /etc/sddm.conf
|
sed -i 's/^#User=.*/User=liveuser/' /etc/sddm.conf
|
||||||
sed -i 's/^#Session=.*/Session=kde-plasma.desktop/' /etc/sddm.conf
|
sed -i 's/^#Session=.*/Session=plasma.desktop/' /etc/sddm.conf
|
||||||
else
|
else
|
||||||
cat > /etc/sddm.conf << SDDM_EOF
|
cat > /etc/sddm.conf << SDDM_EOF
|
||||||
[Autologin]
|
[Autologin]
|
||||||
User=liveuser
|
User=liveuser
|
||||||
Session=kde-plasma.desktop
|
Session=plasma.desktop
|
||||||
SDDM_EOF
|
SDDM_EOF
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
@@ -8,21 +8,33 @@
|
|||||||
|
|
||||||
%packages
|
%packages
|
||||||
|
|
||||||
|
# some apps from mate-applications
|
||||||
|
caja-actions
|
||||||
|
mate-disk-usage-analyzer
|
||||||
|
mate-netspeed
|
||||||
|
|
||||||
|
# system tools
|
||||||
|
system-config-printer
|
||||||
|
system-config-printer-applet
|
||||||
|
|
||||||
# audio player
|
# audio player
|
||||||
audacious
|
audacious
|
||||||
|
|
||||||
|
# office
|
||||||
|
@libreoffice
|
||||||
|
|
||||||
|
# dsl tools
|
||||||
|
rp-pppoe
|
||||||
|
|
||||||
# First, no office
|
# First, no office
|
||||||
-planner
|
#-planner
|
||||||
|
|
||||||
# Drop things for size
|
# Drop things for size
|
||||||
-@3d-printing
|
-@3d-printing
|
||||||
-brasero
|
-brasero
|
||||||
-bluez
|
-bluez
|
||||||
-bluez-cups
|
-bluez-cups
|
||||||
-caja-image-converter
|
|
||||||
-colord
|
-colord
|
||||||
-compiz-plugins-extra
|
|
||||||
-compiz-plugins-unsupported
|
|
||||||
-@dial-up
|
-@dial-up
|
||||||
-espeak
|
-espeak
|
||||||
-fedora-icon-theme
|
-fedora-icon-theme
|
||||||
@@ -32,62 +44,21 @@ audacious
|
|||||||
-gnome-icon-theme-symbolic
|
-gnome-icon-theme-symbolic
|
||||||
-gnome-software
|
-gnome-software
|
||||||
-gnome-themes
|
-gnome-themes
|
||||||
|
-gnome-themes-standard
|
||||||
-gnome-user-docs
|
-gnome-user-docs
|
||||||
-gstreamer1-plugins-good
|
|
||||||
-gstreamer1-plugins-bad-free
|
|
||||||
-gstreamer-plugins-good
|
|
||||||
-gstreamer-plugins-bad-free
|
|
||||||
-gstreamer-plugins-espeak
|
|
||||||
-gucharmap
|
|
||||||
-@guest-desktop-agents
|
|
||||||
-@libreoffice
|
|
||||||
-lftp
|
|
||||||
-@mate-applications
|
-@mate-applications
|
||||||
-mate-icon-theme-faenza
|
-mate-icon-theme-faenza
|
||||||
-NetworkManager-bluetooth
|
-NetworkManager-bluetooth
|
||||||
-transmission-gtk
|
|
||||||
-samba-client
|
|
||||||
-ibus-chewing
|
|
||||||
-ImageMagick
|
|
||||||
-ImageMagick-libs
|
|
||||||
-libical
|
|
||||||
-OpenEXR-libs
|
|
||||||
-reiserfs-utils
|
|
||||||
-seahorse
|
|
||||||
-vim-common
|
|
||||||
-vim-enhanced
|
|
||||||
|
|
||||||
# Drop oversized fonts that aren't needed
|
# Drop oversized fonts that aren't needed
|
||||||
-gnu-free-mono-fonts
|
|
||||||
-gnu-free-fonts-common
|
|
||||||
-gnu-free-serif-fonts
|
|
||||||
-gnu-free-sans-fonts
|
|
||||||
-stix-fonts
|
|
||||||
|
|
||||||
# Drop the Java plugin
|
|
||||||
-icedtea-web
|
|
||||||
-java-1.8.0-openjdk
|
|
||||||
|
|
||||||
# Drop things that pull in perl
|
# Drop things that pull in perl
|
||||||
-linux-atm
|
|
||||||
|
|
||||||
# No printing
|
|
||||||
-foomatic-db-ppds
|
|
||||||
-foomatic
|
|
||||||
-gutenprint
|
|
||||||
-gutenprint-cups
|
|
||||||
-gutenprint-libs
|
|
||||||
-cups
|
|
||||||
-cups-filters
|
|
||||||
-cups-pk-helper
|
|
||||||
|
|
||||||
# Dictionaries are big
|
# Dictionaries are big
|
||||||
# we're going to try keeping hunspell-* after notting, davidz, and ajax voiced
|
# we're going to try keeping hunspell-* after notting, davidz, and ajax voiced
|
||||||
# strong preference to giving it a go on #fedora-desktop.
|
# strong preference to giving it a go on #fedora-desktop.
|
||||||
# also see http://bugzilla.gnome.org/681084
|
# also see http://bugzilla.gnome.org/681084
|
||||||
-aspell-*
|
|
||||||
-man-pages*
|
|
||||||
-words
|
|
||||||
|
|
||||||
# Help and art can be big, too
|
# Help and art can be big, too
|
||||||
-gnome-user-docs
|
-gnome-user-docs
|
||||||
@@ -96,35 +67,6 @@ audacious
|
|||||||
-*backgrounds-extras
|
-*backgrounds-extras
|
||||||
|
|
||||||
# Legacy cmdline things we don't want
|
# Legacy cmdline things we don't want
|
||||||
-krb5-auth-dialog
|
|
||||||
-krb5-workstation
|
|
||||||
-pam_krb5
|
|
||||||
-quota
|
|
||||||
-nano
|
|
||||||
-minicom
|
|
||||||
-dos2unix
|
|
||||||
-finger
|
|
||||||
-ftp
|
|
||||||
-jwhois
|
|
||||||
-mtr
|
|
||||||
-pinfo
|
|
||||||
-rsh
|
|
||||||
-nfs-utils
|
|
||||||
-ypbind
|
|
||||||
-yp-tools
|
|
||||||
-rpcbind
|
|
||||||
-acpid
|
|
||||||
-ntsysv
|
|
||||||
|
|
||||||
# Drop some system-config things
|
|
||||||
-system-config-language
|
|
||||||
-system-config-printer
|
|
||||||
-system-config-printer-libs
|
|
||||||
-system-config-printer-udev
|
|
||||||
-system-config-rootpassword
|
|
||||||
-system-config-services
|
|
||||||
-system-config-users
|
|
||||||
-policycoreutils-gui
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -75,7 +75,6 @@ gnome-keyring-pam
|
|||||||
-packETH
|
-packETH
|
||||||
-pads
|
-pads
|
||||||
-pdfcrack
|
-pdfcrack
|
||||||
-picviz-gui
|
|
||||||
-proxychains
|
-proxychains
|
||||||
-pyrit
|
-pyrit
|
||||||
-raddump
|
-raddump
|
||||||
@@ -88,9 +87,7 @@ gnome-keyring-pam
|
|||||||
-tcpreplay
|
-tcpreplay
|
||||||
-tripwire
|
-tripwire
|
||||||
-wipe
|
-wipe
|
||||||
|
-zmap
|
||||||
# Is not available for OpenVAS-7. No longer supported by upstream.
|
|
||||||
-openvas-client
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ asc
|
|||||||
asc-music
|
asc-music
|
||||||
astromenace
|
astromenace
|
||||||
beneath-a-steel-sky-cd
|
beneath-a-steel-sky-cd
|
||||||
boswars
|
#boswars # currently not building
|
||||||
btanks
|
btanks
|
||||||
bzflag
|
bzflag
|
||||||
crossfire-client
|
crossfire-client
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
%packages
|
%packages
|
||||||
-realmd # only seems to be used in GNOME
|
|
||||||
-PackageKit* # we switched to yumex, so we don't need this
|
-PackageKit* # we switched to yumex, so we don't need this
|
||||||
-ConsoleKit # ConsoleKit is deprecated
|
-ConsoleKit # ConsoleKit is deprecated
|
||||||
-ConsoleKit-x11 # ConsoleKit is deprecated
|
-ConsoleKit-x11 # ConsoleKit is deprecated
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/metalink?repo=fedora-$releasever&arch=$basearch
|
||||||
repo --name=updates --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
repo --name=updates --mirrorlist=http://mirrors.fedoraproject.org/metalink?repo=updates-released-f$releasever&arch=$basearch
|
||||||
#repo --name=updates-testing --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-testing-f$releasever&arch=$basearch
|
#repo --name=updates-testing --mirrorlist=http://mirrors.fedoraproject.org/metalink?repo=updates-testing-f$releasever&arch=$basearch
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
repo --name=rawhide --mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=rawhide&arch=$basearch
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
# - Sebastian Dziallas <sdz AT fedoraproject DOT org>
|
# - Sebastian Dziallas <sdz AT fedoraproject DOT org>
|
||||||
# - Mel Chua <mchua AT fedoraproject DOT org>
|
# - Mel Chua <mchua AT fedoraproject DOT org>
|
||||||
|
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
-@fonts
|
-@fonts
|
||||||
-@dial-up
|
-@dial-up
|
||||||
@@ -29,6 +28,18 @@
|
|||||||
-realmd
|
-realmd
|
||||||
-eekboard-libs
|
-eekboard-libs
|
||||||
-open-vm-tools*
|
-open-vm-tools*
|
||||||
|
-gfs2-utils
|
||||||
|
-abrt-cli
|
||||||
|
-ibus*
|
||||||
|
-hyperv-daemons
|
||||||
|
|
||||||
|
# Add some extra fonts
|
||||||
|
dejavu-sans-fonts
|
||||||
|
dejavu-sans-mono-fonts
|
||||||
|
madan-fonts
|
||||||
|
aajohan-comfortaa-fonts
|
||||||
|
sil-abyssinica-fonts
|
||||||
|
vlgothic-fonts
|
||||||
|
|
||||||
# == Core Sugar Platform ==
|
# == Core Sugar Platform ==
|
||||||
@sugar-desktop
|
@sugar-desktop
|
||||||
|
|||||||
@@ -24,6 +24,8 @@ gnome-keyring-pam
|
|||||||
# Add some screensavers, people seem to like them
|
# Add some screensavers, people seem to like them
|
||||||
# Note that blank is still default.
|
# Note that blank is still default.
|
||||||
xscreensaver-extras
|
xscreensaver-extras
|
||||||
|
wget
|
||||||
|
system-config-printer
|
||||||
|
|
||||||
# save some space
|
# save some space
|
||||||
-autofs
|
-autofs
|
||||||
|
|||||||
Reference in New Issue
Block a user