mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-12-09 00:20:31 +08:00
Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
66b3b50b89 | ||
|
|
341e2f56f9 | ||
|
|
b1c14531ce | ||
|
|
9c52c11e9a | ||
|
|
37dc4aa02f | ||
|
|
a8e9553e5c | ||
|
|
75e15f1dd2 | ||
|
|
9eed55b9e5 | ||
|
|
eae3708bca | ||
|
|
ee4bc19ae7 | ||
|
|
51d4c8ee45 | ||
|
|
9defdef6cd | ||
|
|
efab044d00 | ||
|
|
13f09fe7d6 | ||
|
|
38321a2d35 | ||
|
|
b5ab8fc9bb | ||
|
|
6881942927 | ||
|
|
c00926fcb5 | ||
|
|
66c69f4243 | ||
|
|
6633c8f661 | ||
|
|
84b8cd7926 | ||
|
|
f1cfec3f1b |
2
Makefile
2
Makefile
@@ -18,8 +18,6 @@ install:
|
||||
install -m 644 custom/* $(DATADIR)/$(name)/custom
|
||||
mkdir -p -m 755 $(DATADIR)/$(name)/l10n
|
||||
install -m 644 l10n/* $(DATADIR)/$(name)/l10n
|
||||
mkdir -p -m 755 $(DATADIR)/$(name)/snippets
|
||||
install -m 644 snippets/* $(DATADIR)/$(name)/snippets
|
||||
|
||||
clean:
|
||||
rm -f $(name)-*.tar.gz
|
||||
|
||||
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! :)
|
||||
@@ -1,8 +0,0 @@
|
||||
## Lorax template to configure Anaconda to use the local OSTree
|
||||
## repository on disk.
|
||||
|
||||
<%page args="ostree_osname, ostree_ref"/>
|
||||
append usr/share/anaconda/interactive-defaults.ks "ostreesetup --nogpg --osname=${ostree_osname} --remote=${ostree_osname} --url=file:////run/install/repo/content/repo --ref=${ostree_ref}\n"
|
||||
append usr/share/anaconda/interactive-defaults.ks "services --disabled cloud-init,cloud-config,cloud-final,cloud-init-local\n"
|
||||
append usr/share/anaconda/interactive-defaults.ks "%post --erroronfail\nrm -f /etc/ostree/remotes.d/${ostree_osname}.conf\nostree remote add --set=gpg-verify=false fedora-atomic 'https://dl.fedoraproject.org/pub/fedora/linux/atomic/22/'\n%end\n"
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
## Lorax template to embed an OSTree repository into the installer.iso
|
||||
## and configure an interactive installer use to look for it.
|
||||
##
|
||||
## Note that we pull with depth=0 to only get *one* commit into the
|
||||
## ISO, because we obviously don't want the full history.
|
||||
|
||||
<%page args="workdir, ostree_osname, ostree_repo, ostree_ref"/>
|
||||
runcmd mkdir -p ${workdir}/iso-graft/content/repo
|
||||
runcmd ostree --repo=${workdir}/iso-graft/content/repo init --mode=archive-z2
|
||||
runcmd ostree --repo=${workdir}/iso-graft/content/repo remote add ostree-mirror --set=gpg-verify=false ${ostree_repo}
|
||||
runcmd ostree --repo=${workdir}/iso-graft/content/repo pull --mirror ostree-mirror ${ostree_ref}
|
||||
@@ -4,7 +4,7 @@
|
||||
lang C
|
||||
keyboard us
|
||||
timezone US/Eastern
|
||||
auth --useshadow --passalgo=sha512
|
||||
auth --useshadow --enablemd5
|
||||
selinux --permissive
|
||||
firewall --disabled
|
||||
bootloader --timeout=1 --append="acpi=force"
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
lang en_US.UTF-8
|
||||
#keyboard us
|
||||
auth --useshadow --passalgo=sha512
|
||||
auth --useshadow --enablemd5
|
||||
selinux --enforcing
|
||||
firewall --enabled --service=mdns,ssh
|
||||
|
||||
# configure extlinux bootloader
|
||||
bootloader extlinux
|
||||
|
||||
part /boot --size=512 --fstype ext4
|
||||
part /boot --size=512 --fstype ext3
|
||||
part swap --size=512 --fstype swap
|
||||
part / --size=3000 --fstype ext4
|
||||
|
||||
@@ -23,6 +23,7 @@ services --enabled=ssh,NetworkManager,avahi-daemon,rsyslog,chronyd --disabled=ne
|
||||
@standard
|
||||
@hardware-support
|
||||
@dial-up
|
||||
@fedora-release-nonproduct
|
||||
|
||||
kernel
|
||||
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
%include fedora-arm-base.ks
|
||||
|
||||
part /boot --size=300 --fstype ext4
|
||||
part swap --size=256 --fstype swap
|
||||
part / --size=1200 --fstype ext4
|
||||
part swap --size=128 --fstype swap
|
||||
part / --size=1400 --fstype ext4
|
||||
|
||||
%packages
|
||||
-@standard
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
%include fedora-arm-base.ks
|
||||
|
||||
# server defaults to xfs for / so lets do so on arm also
|
||||
part / --size=3000 --fstype xfs
|
||||
|
||||
%packages
|
||||
-@fedora-release-nonproduct
|
||||
-@dial-up
|
||||
# install the default groups for the server evironment since installing the environment is not working
|
||||
@server-product
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
%include fedora-arm-base.ks
|
||||
%include fedora-arm-xbase.ks
|
||||
%include fedora-xfce-packages.ks
|
||||
|
||||
part / --size=4000 --fstype ext4
|
||||
part / --size=3500 --fstype ext4
|
||||
|
||||
%post
|
||||
echo -n "Enabling initial-setup gui mode on startup"
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
# fedora-cinnamon-packages.ks
|
||||
#
|
||||
# Description:
|
||||
# - Fedora package set for the Cinnamon Desktop Environment
|
||||
#
|
||||
# Maintainer(s):
|
||||
# - Dan Book <grinnz@grinnz.com>
|
||||
|
||||
%packages
|
||||
|
||||
@networkmanager-submodules
|
||||
@cinnamon-desktop
|
||||
@libreoffice
|
||||
|
||||
# internet and multimedia
|
||||
pidgin
|
||||
hexchat
|
||||
transmission
|
||||
parole
|
||||
|
||||
# unlock default keyring. FIXME: Should probably be done in comps
|
||||
gnome-keyring-pam
|
||||
|
||||
# save some space
|
||||
-fedora-icon-theme
|
||||
-PackageKit* # we switched to yumex, so we don't need this
|
||||
|
||||
%end
|
||||
@@ -6,13 +6,12 @@
|
||||
services --disabled=cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||
|
||||
user --name=vagrant --password=vagrant
|
||||
rootpw vagrant
|
||||
|
||||
%post --erroronfail
|
||||
|
||||
# Work around cloud-init being both disabled and enabled; need
|
||||
# to refactor to a common base.
|
||||
systemctl mask cloud-init cloud-init-local cloud-config cloud-final
|
||||
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
|
||||
|
||||
@@ -1,17 +1,15 @@
|
||||
# Fedora Atomic is a cloud-focused spin implementing the Project
|
||||
# Atomic patterns. Note that this replicates the same tree which can
|
||||
# now be installed on bare metal.
|
||||
|
||||
# This image allocates most space to an LVM-managed thin pool
|
||||
# dedicated for Docker containers, and uses docker-storage-setup to
|
||||
# dynamically resize storage on boot.
|
||||
# Fedora Atomic is a cloud-focused spin implementing the Project Atomic
|
||||
# patterns.
|
||||
#
|
||||
# RIGHT NOW, this is very like the traditional cloud image -- this is
|
||||
# just a starting point.
|
||||
|
||||
text
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc Etc/UTC
|
||||
|
||||
auth --useshadow --passalgo=sha512
|
||||
auth --useshadow --enablemd5
|
||||
selinux --enforcing
|
||||
rootpw --lock --iscrypted locked
|
||||
user --name=none
|
||||
@@ -21,8 +19,7 @@ firewall --disabled
|
||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8"
|
||||
|
||||
network --bootproto=dhcp --device=link --activate --onboot=on
|
||||
services --disabled=network
|
||||
services --enabled=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
|
||||
clearpart --all
|
||||
@@ -33,14 +30,14 @@ volgroup atomicos pv.01
|
||||
logvol / --size=3000 --fstype="xfs" --name=root --vgname=atomicos
|
||||
|
||||
# Equivalent of %include fedora-repo.ks
|
||||
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=http://kojipkgs.fedoraproject.org/mash/atomic/rawhide/ --ref=fedora-atomic/rawhide/x86_64/docker-host
|
||||
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=http://kojipkgs.fedoraproject.org/mash/atomic/22/ --ref=fedora-atomic/f22/x86_64/docker-host
|
||||
|
||||
reboot
|
||||
|
||||
%post --erroronfail
|
||||
# See https://github.com/projectatomic/rpm-ostree/issues/42
|
||||
ostree remote delete fedora-atomic
|
||||
ostree remote add --set=gpg-verify=false fedora-atomic 'https://dl.fedoraproject.org/pub/fedora/linux/atomic/rawhide/'
|
||||
ostree remote add --set=gpg-verify=false fedora-atomic 'http://dl.fedoraproject.org/pub/fedora/linux/atomic/22/'
|
||||
|
||||
# older versions of livecd-tools do not follow "rootpw --lock" line above
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=964299
|
||||
@@ -48,10 +45,6 @@ passwd -l root
|
||||
# remove the user anaconda forces us to make
|
||||
userdel -r none
|
||||
|
||||
# Configure docker-storage-setup to resize the partition table on boot
|
||||
# https://github.com/projectatomic/docker-storage-setup/pull/25
|
||||
echo 'GROWPART=true' > /etc/sysconfig/docker-storage-setup
|
||||
|
||||
echo -n "Getty fixes"
|
||||
# although we want console output going to the serial console, we don't
|
||||
# actually have the opportunity to login there. FIX.
|
||||
|
||||
@@ -1,61 +0,0 @@
|
||||
# Like the Cloud Base image, but tuned for vagrant. Enable
|
||||
# the vagrant user, disable cloud-init.
|
||||
|
||||
%include fedora-cloud-base.ks
|
||||
|
||||
services --disabled=cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||
|
||||
# So, to be clear, this gaping security hole is an integral part of how
|
||||
# Vagrant works - These images are _not_ supposed to be run in any public-
|
||||
# Internet facing way - They are for use on developer setups, almost always
|
||||
# with NAT
|
||||
user --name=vagrant --password=vagrant
|
||||
|
||||
# Suggestion from @purpleidea that most/many vagrant boxes also set root PW
|
||||
# to "vagrant" for ease of use. Again, see comments above.
|
||||
rootpw vagrant
|
||||
|
||||
# The addition of the net.ifnames=0 and biosdevnames=0 option ensures that
|
||||
# even on VirtualBox virt, we get a primary network device with "eth0" as the name
|
||||
# This simplifies things and allows a single disk image for both supported Vagrant
|
||||
# platforms (virtualbox and kvm)
|
||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8 net.ifnames=0 biosdevname=0"
|
||||
|
||||
%packages
|
||||
# The default koji Vagrantfile configuration uses rsync to sync files between
|
||||
# the vagrant host and the guest. It uses yum to verify that rsync is present
|
||||
# and/or install it if it is not. It will fail without adding the yum compat
|
||||
# layer for dnf
|
||||
# TODO: Teach vagrant about dnf
|
||||
dnf-yum
|
||||
# rsync gets installed when the Vagrant box is first launched on the
|
||||
# users setup. This can actually take a bit of time. Just fold it
|
||||
# in to the base box disk image
|
||||
rsync
|
||||
%end
|
||||
|
||||
%post --erroronfail
|
||||
|
||||
# Work around cloud-init being both disabled and enabled; need
|
||||
# to refactor to a common base.
|
||||
systemctl mask cloud-init cloud-init-local cloud-config cloud-final
|
||||
|
||||
# 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/
|
||||
|
||||
# Further suggestion from @purpleidea (James Shubin) - extend key to root users as well
|
||||
mkdir -m 0700 -p /root/.ssh
|
||||
cp /home/vagrant/.ssh/authorized_keys /root/.ssh/authorized_keys
|
||||
chmod 600 /root/.ssh/authorized_keys
|
||||
chown -R root:root /root/.ssh
|
||||
|
||||
%end
|
||||
|
||||
@@ -7,29 +7,16 @@
|
||||
# Note that unlike the standard F20 install, this image has /tmp on disk
|
||||
# rather than in tmpfs, since memory is usually at a premium.
|
||||
#
|
||||
# This kickstart file is designed to be used with ImageFactory (in Koji).
|
||||
#
|
||||
# To do a local build, you'll need to install ImageFactory. See
|
||||
# http://worknotes.readthedocs.org/en/latest/cloudimages.html for some notes.
|
||||
#
|
||||
# For a TDL file, I store one here:
|
||||
# https://git.fedorahosted.org/cgit/fedora-atomic.git/tree/fedora-atomic-rawhide.tdl
|
||||
# (Koji generates one internally...what we really want is Koji to publish it statically)
|
||||
#
|
||||
# Once you have imagefactory and imagefactory-plugins installed, run:
|
||||
#
|
||||
# curl -O https://git.fedorahosted.org/cgit/fedora-atomic.git/plain/fedora-atomic-rawhide.tdl
|
||||
# tempfile=$(mktemp --suffix=.ks)
|
||||
# ksflatten -v F22 -c fedora-cloud-base.ks > ${tempfile}
|
||||
# imagefactory --debug base_image --file-parameter install_script ${tempfile} fedora-atomic-rawhide.tdl
|
||||
#
|
||||
# This kickstart file is designed to be used with appliance-creator and
|
||||
# may need slight modification for use with actual anaconda or other tools.
|
||||
# We intend to target anaconda-in-a-vm style image building for F20.
|
||||
|
||||
cmdline
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc Etc/UTC
|
||||
|
||||
auth --useshadow --passalgo=sha512
|
||||
auth --useshadow --enablemd5
|
||||
selinux --enforcing
|
||||
rootpw --lock --iscrypted locked
|
||||
user --name=none
|
||||
@@ -43,7 +30,7 @@ services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config
|
||||
|
||||
zerombr
|
||||
clearpart --all
|
||||
part / --size 3000 --fstype ext4 --grow
|
||||
part / --size 3000 --fstype ext4
|
||||
|
||||
%include fedora-repo.ks
|
||||
|
||||
@@ -52,12 +39,7 @@ reboot
|
||||
# Package list.
|
||||
# FIXME: instLangs does not work, so there's a hack below
|
||||
# (see https://bugzilla.redhat.com/show_bug.cgi?id=1051816)
|
||||
# FIXME: instLangs bug has been fixed but now having instLangs
|
||||
# with an arg causes no langs to get installed because of BZ1262040
|
||||
# which yields the errors in BZ1261249. For now fix by not using
|
||||
# --instLangs at all
|
||||
#%packages --instLangs=en
|
||||
%packages
|
||||
%packages --instLangs=en
|
||||
|
||||
kernel-core
|
||||
@^cloud-server-environment
|
||||
@@ -67,14 +49,10 @@ kernel-core
|
||||
|
||||
# Some things from @core we can do without in a minimal install
|
||||
-biosdevname
|
||||
# Need to also add back plymouth in order to mask failure of
|
||||
# systemd-vconsole-setup.service. BZ#1272684. Comment out for now
|
||||
#-plymouth
|
||||
-plymouth
|
||||
-NetworkManager
|
||||
-iprutils
|
||||
# Now that BZ#1199868 is fixed kbd really gets removed but it breaks
|
||||
# systemd-vconsole-setup.service on boot. Comment out for now
|
||||
#-kbd
|
||||
-kbd
|
||||
-uboot-tools
|
||||
-kernel
|
||||
-grub2
|
||||
@@ -125,10 +103,8 @@ ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
|
||||
echo .
|
||||
|
||||
# this is installed by default but we don't need it in virt
|
||||
# Commenting out the following for #1234504
|
||||
# rpm works just fine for removing this, no idea why dnf can't cope
|
||||
echo "Removing linux-firmware package."
|
||||
rpm -e linux-firmware
|
||||
dnf -C -y erase linux-firmware
|
||||
|
||||
# Remove firewalld; was supposed to be optional in F18+, but is pulled in
|
||||
# in install/image building.
|
||||
@@ -166,11 +142,9 @@ NAutoVTs=0' /etc/systemd/logind.conf
|
||||
|
||||
echo -n "Network fixes"
|
||||
# initscripts don't like this file to be missing.
|
||||
# and https://bugzilla.redhat.com/show_bug.cgi?id=1204612
|
||||
cat > /etc/sysconfig/network << EOF
|
||||
NETWORKING=yes
|
||||
NOZEROCONF=yes
|
||||
DEVTIMEOUT=10
|
||||
EOF
|
||||
|
||||
# For cloud images, 'eth0' _is_ the predictable device name, since
|
||||
@@ -257,8 +231,5 @@ dd bs=1M if=/dev/zero of=/var/tmp/zeros || :
|
||||
rm -f /var/tmp/zeros
|
||||
echo "(Don't worry -- that out-of-space error was expected.)"
|
||||
|
||||
# For trac ticket https://fedorahosted.org/cloud/ticket/128
|
||||
rm -f /etc/sysconfig/network-scripts/ifcfg-ens3
|
||||
|
||||
%end
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc Etc/UTC
|
||||
|
||||
auth --useshadow --passalgo=sha512
|
||||
auth --useshadow --enablemd5
|
||||
selinux --enforcing
|
||||
rootpw --lock --iscrypted locked
|
||||
user --name=none
|
||||
@@ -108,10 +108,8 @@ ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
|
||||
echo .
|
||||
|
||||
# this is installed by default but we don't need it in virt
|
||||
# Commenting out the following for #1234504
|
||||
# rpm works just fine for removing this, no idea why dnf can't cope
|
||||
echo "Removing linux-firmware package."
|
||||
rpm -e linux-firmware
|
||||
yum -C -y remove linux-firmware
|
||||
|
||||
# Remove firewalld; was supposed to be optional in F18+, but is required to
|
||||
# be present for install/image building.
|
||||
|
||||
@@ -7,7 +7,7 @@ lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc Etc/UTC
|
||||
|
||||
auth --useshadow --passalgo=sha512
|
||||
auth --useshadow --enablemd5
|
||||
selinux --enforcing
|
||||
rootpw --lock --iscrypted locked
|
||||
user --name=none
|
||||
@@ -99,10 +99,8 @@ ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
|
||||
echo .
|
||||
|
||||
# this is installed by default but we don't need it in virt
|
||||
# Commenting out the following for #1234504
|
||||
# rpm works just fine for removing this, no idea why dnf can't cope
|
||||
echo "Removing linux-firmware package."
|
||||
rpm -e linux-firmware
|
||||
yum -C -y remove linux-firmware
|
||||
|
||||
# Remove firewalld; was supposed to be optional in F18+, but is required to
|
||||
# be present for install/image building.
|
||||
|
||||
@@ -2,26 +2,14 @@
|
||||
#
|
||||
# To keep this image minimal it only installs English language. You need to change
|
||||
# yum configuration in order to enable other languages.
|
||||
#
|
||||
### Hacking on this image ###
|
||||
# This kickstart is processed using Anaconda-in-ImageFactory (via Koji typically),
|
||||
# but you can run imagefactory locally too.
|
||||
#
|
||||
# To do so, testing local changes, first you'll need a TDL file. I store one here:
|
||||
# https://git.fedorahosted.org/cgit/fedora-atomic.git/tree/fedora-atomic-rawhide.tdl
|
||||
#
|
||||
# Then, once you have imagefactory and imagefactory-plugins installed, run:
|
||||
#
|
||||
# imagefactory --debug target_image --template /path/to/fedora-atomic-rawhide.tdl --parameter offline_icicle true --file-parameter install_script $(pwd)/fedora-docker-base.ks docker
|
||||
#
|
||||
|
||||
cmdline
|
||||
bootloader --disabled
|
||||
bootloader --location=none
|
||||
timezone --isUtc --nontp Etc/UTC
|
||||
rootpw --lock --iscrypted locked
|
||||
user --name=none
|
||||
rootpw --plaintext qweqwe
|
||||
|
||||
keyboard us
|
||||
firewall --disable
|
||||
zerombr
|
||||
clearpart --all
|
||||
part / --size 3000 --fstype ext4
|
||||
@@ -33,9 +21,7 @@ bash
|
||||
fedora-release
|
||||
rootfiles
|
||||
vim-minimal
|
||||
dnf
|
||||
dnf-yum # https://fedorahosted.org/fesco/ticket/1312#comment:29
|
||||
sssd-client
|
||||
yum
|
||||
#fakesystemd #TODO: waiting for review https://bugzilla.redhat.com/show_bug.cgi?id=1118740
|
||||
-kernel
|
||||
|
||||
@@ -46,23 +32,13 @@ sssd-client
|
||||
# Set the language rpm nodocs transaction flag persistently in the
|
||||
# image yum.conf and rpm macros
|
||||
|
||||
# remove the user anaconda forces us to make
|
||||
userdel -r none
|
||||
|
||||
LANG="en_US"
|
||||
echo "%_install_lang $LANG" > /etc/rpm/macros.image-language-conf
|
||||
|
||||
# Carry these configs for both dnf and yum for users who are calling
|
||||
# yum-deprecated directly. This will keep the experience between both
|
||||
# consistent
|
||||
awk '(NF==0&&!done){print "override_install_langs='$LANG'\ntsflags=nodocs";done=1}{print}' \
|
||||
< /etc/yum.conf > /etc/yum.conf.new
|
||||
mv /etc/yum.conf.new /etc/yum.conf
|
||||
|
||||
awk '(NF==0&&!done){print "override_install_langs='$LANG'\ntsflags=nodocs";done=1}{print}' \
|
||||
< /etc/dnf/dnf.conf > /etc/dnf/dnf.conf.new
|
||||
mv /etc/dnf/dnf.conf.new /etc/dnf/dnf.conf
|
||||
|
||||
echo "Import RPM GPG key"
|
||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
||||
basearch=$(uname -i)
|
||||
|
||||
@@ -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 --excludepkgs=fedora-productimg-workstation,fedora-productimg-server
|
||||
repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch --excludepkgs=fedora-productimg-workstation,fedora-productimg-server
|
||||
#repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch --excludepkgs=fedora-productimg-workstation,fedora-productimg-server
|
||||
#repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch --excludepkgs=fedora-productimg-workstation,fedora-productimg-server
|
||||
|
||||
# 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 --excludepkgs=fedora-productimg-workstation,fedora-productimg-server
|
||||
#repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch --excludepkgs=fedora-productimg-workstation,fedora-productimg-server
|
||||
repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch --excludepkgs=fedora-productimg-workstation,fedora-productimg-server
|
||||
repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch --excludepkgs=fedora-productimg-workstation,fedora-productimg-server
|
||||
|
||||
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
||||
# (default groups for the configured repos are added by --default)
|
||||
|
||||
@@ -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 --excludepkgs=fedora-productimg-cloud,fedora-productimg-workstation
|
||||
repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch --excludepkgs=fedora-productimg-cloud,fedora-productimg-workstation
|
||||
#repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch --excludepkgs=fedora-productimg-cloud,fedora-productimg-workstation
|
||||
#repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch --excludepkgs=fedora-productimg-cloud,fedora-productimg-workstation
|
||||
|
||||
# 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 --excludepkgs=fedora-productimg-cloud,fedora-productimg-workstation
|
||||
#repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch --excludepkgs=fedora-productimg-cloud,fedora-productimg-workstation
|
||||
repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch --excludepkgs=fedora-productimg-cloud,fedora-productimg-workstation
|
||||
repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch --excludepkgs=fedora-productimg-cloud,fedora-productimg-workstation
|
||||
|
||||
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
||||
# (default groups for the configured repos are added by --default)
|
||||
@@ -71,7 +71,6 @@ dracut-*
|
||||
@standard
|
||||
@core
|
||||
@hardware-support
|
||||
@networkmanager-submodules
|
||||
|
||||
# Fedora Server.
|
||||
# Including this causes the fedora-release-server package to be included,
|
||||
@@ -82,7 +81,6 @@ dracut-*
|
||||
@headless-management
|
||||
@container-management
|
||||
@domain-client
|
||||
@server-hardware-support
|
||||
|
||||
# Common server packages
|
||||
@mysql
|
||||
@@ -108,7 +106,7 @@ dracut-*
|
||||
@network-server
|
||||
@printing
|
||||
@smb-server
|
||||
@virtualization-headless
|
||||
@virtualization
|
||||
@load-balancer
|
||||
@ha
|
||||
|
||||
|
||||
@@ -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 --excludepkgs=fedora-productimg-cloud,fedora-productimg-server
|
||||
repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch --excludepkgs=fedora-productimg-cloud,fedora-productimg-server
|
||||
#repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch --excludepkgs=fedora-productimg-cloud,fedora-productimg-server
|
||||
#repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch --excludepkgs=fedora-productimg-cloud,fedora-productimg-server
|
||||
|
||||
# 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 --excludepkgs=fedora-productimg-cloud,fedora-productimg-server
|
||||
#repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch --excludepkgs=fedora-productimg-cloud,fedora-productimg-server
|
||||
repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch --excludepkgs=fedora-productimg-cloud,fedora-productimg-server
|
||||
repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch --excludepkgs=fedora-productimg-cloud,fedora-productimg-server
|
||||
|
||||
%include fedora-workstation-packages.ks
|
||||
|
||||
|
||||
@@ -8,9 +8,6 @@
|
||||
|
||||
### The KDE-Desktop
|
||||
|
||||
### Browser
|
||||
firefox
|
||||
|
||||
### fixes
|
||||
|
||||
# use kde-print-manager instead of system-config-printer
|
||||
|
||||
@@ -1,164 +0,0 @@
|
||||
#fedora-live-astronomy-kde.ks
|
||||
# With KDE Desktop
|
||||
|
||||
# Fedora Astronomy: For astronomers and astrophysicists
|
||||
# Fedora-Astronomy aims to create a Fedora which has the generic
|
||||
# toolset for the astronomer
|
||||
#
|
||||
# Web: https://fedoraproject.org/wiki/SIGs/Astronomy/AstroSpin
|
||||
#
|
||||
# Partly based on Scientific KDE Spin
|
||||
# https://fedoraproject.org/wiki/Scientific_Spin
|
||||
#
|
||||
|
||||
# Maintainer: Christian Dersch <lupinix@fedoraproject.org>
|
||||
# https://fedoraproject.org/wiki/User:Lupinix
|
||||
|
||||
%include fedora-live-kde.ks
|
||||
|
||||
# The recommended part size for DVDs is too close to use for the astronomy spin
|
||||
part / --size 12288
|
||||
|
||||
%packages
|
||||
|
||||
# Installing the default/mandatory packages from engineering & scientific
|
||||
@engineering-and-scientific
|
||||
|
||||
# astronomical data analysis
|
||||
cdsclient
|
||||
fpack
|
||||
gcx
|
||||
psfex
|
||||
saoimage
|
||||
scamp
|
||||
sextractor
|
||||
siril
|
||||
skyviewer
|
||||
swarp
|
||||
|
||||
# Observatory: KStars + INDI drivers + Skychart
|
||||
indi-aagcloudwatcher
|
||||
indi-apogee
|
||||
indi-eqmod
|
||||
indi-gphoto
|
||||
indi-sx
|
||||
kstars
|
||||
skychart
|
||||
skychart-data-dso
|
||||
skychart-data-stars
|
||||
stellarium
|
||||
|
||||
# misc. astronomy
|
||||
celestia
|
||||
xvarstar
|
||||
|
||||
# Some astro environment stuff
|
||||
astronomy-bookmarks
|
||||
astronomy-menus
|
||||
astronomy-menus-toplevel
|
||||
|
||||
#Devel tools
|
||||
|
||||
#Install the mandatory packages from dev-tools and dev-libs
|
||||
# C/C++ compiler, gdb, autotools, bison, flex, make, strace..
|
||||
@development-tools
|
||||
@development-libs
|
||||
@c-development
|
||||
@rpm-development-tools
|
||||
# for astronomy
|
||||
cfitsio-devel
|
||||
CCfits-devel
|
||||
libnova-devel
|
||||
wcslib-devel
|
||||
|
||||
|
||||
#python 2 tools/libraries not included from the groups
|
||||
python-tools
|
||||
python-ipython
|
||||
python-ipython-console
|
||||
python-ipython-notebook
|
||||
sympy
|
||||
python-networkx
|
||||
python-pandas
|
||||
# Python astronomy
|
||||
astropy-tools
|
||||
python-astropy
|
||||
python-astroML
|
||||
python-photutils
|
||||
python-sep
|
||||
pyephem
|
||||
APLpy
|
||||
ATpy
|
||||
|
||||
|
||||
#python 3 and tools/libraries not included from the groups
|
||||
python3
|
||||
python3-tools
|
||||
python3-matplotlib
|
||||
python3-scipy
|
||||
python3-numpy
|
||||
python3-ipython
|
||||
python3-ipython-console
|
||||
python3-ipython-notebook
|
||||
python3-sympy
|
||||
python3-networkx
|
||||
python3-pandas
|
||||
# Python 3 astronomy
|
||||
python3-astropy
|
||||
python3-astroML
|
||||
python3-APLpy
|
||||
python3-ATpy
|
||||
python3-photutils
|
||||
python3-sep
|
||||
|
||||
# matplotlib backends
|
||||
python-matplotlib-qt4
|
||||
python-matplotlib-qt5
|
||||
python-matplotlib-tk
|
||||
python3-matplotlib-qt4
|
||||
python3-matplotlib-qt5
|
||||
python3-matplotlib-tk
|
||||
|
||||
|
||||
# Python IDE very useful for scientific use
|
||||
spyder
|
||||
|
||||
|
||||
#Version control- a GUI for each as well
|
||||
|
||||
# Installing rapidsvn will also install subversion package
|
||||
rapidsvn
|
||||
git
|
||||
git-gui
|
||||
# Mercurial
|
||||
mercurial
|
||||
mercurial-hgk
|
||||
|
||||
#Backup Utilities
|
||||
backintime-kde
|
||||
|
||||
#Drawing, Picture viewing tools, Visualization tools
|
||||
dia
|
||||
gimp
|
||||
inkscape
|
||||
kst
|
||||
kst-docs
|
||||
kst-fits
|
||||
scidavis
|
||||
|
||||
#Misc. Utils
|
||||
ImageMagick
|
||||
kate
|
||||
kate-plugins
|
||||
rlwrap
|
||||
screen
|
||||
|
||||
# Omit KDE 4 translations for now: https://bugzilla.redhat.com/show_bug.cgi?id=1197940
|
||||
-kde-l10n-*
|
||||
-calligra-l10n-*
|
||||
|
||||
%end
|
||||
|
||||
%post
|
||||
|
||||
%end
|
||||
@@ -10,12 +10,12 @@
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone US/Eastern
|
||||
auth --useshadow --passalgo=sha512
|
||||
auth --useshadow --enablemd5
|
||||
selinux --enforcing
|
||||
firewall --enabled --service=mdns
|
||||
xconfig --startxonboot
|
||||
part / --size 4096 --fstype ext4
|
||||
services --enabled=NetworkManager,ModemManager --disabled=network,sshd
|
||||
services --enabled=NetworkManager --disabled=network,sshd
|
||||
|
||||
%include fedora-repo.ks
|
||||
|
||||
@@ -24,6 +24,7 @@ services --enabled=NetworkManager,ModemManager --disabled=network,sshd
|
||||
@guest-desktop-agents
|
||||
@standard
|
||||
@core
|
||||
@fedora-release-nonproduct
|
||||
@fonts
|
||||
@input-methods
|
||||
@dial-up
|
||||
@@ -47,9 +48,6 @@ anaconda
|
||||
# Need aajohan-comfortaa-fonts for the SVG rnotes images
|
||||
aajohan-comfortaa-fonts
|
||||
|
||||
# Without this, initramfs generation during live image creation fails: #1242586
|
||||
dracut-live
|
||||
|
||||
%end
|
||||
|
||||
%post
|
||||
@@ -196,9 +194,6 @@ systemctl --no-reload disable atd.service 2> /dev/null || :
|
||||
systemctl stop crond.service 2> /dev/null || :
|
||||
systemctl stop atd.service 2> /dev/null || :
|
||||
|
||||
# Don't sync the system clock when running live (RHBZ #1018162)
|
||||
sed -i 's/rtcsync//' /etc/chrony.conf
|
||||
|
||||
# Mark things as configured
|
||||
touch /.liveimg-configured
|
||||
|
||||
@@ -275,15 +270,6 @@ chmod 755 /etc/rc.d/init.d/livesys-late
|
||||
# enable tmpfs for /tmp
|
||||
systemctl enable tmp.mount
|
||||
|
||||
# As livecd-creator is still yum based, we only get yum's yumdb during the
|
||||
# image compose. Migrate this over to dnf so that dnf and PackageKit can keep
|
||||
# track where packages came from.
|
||||
if [ ! -d /var/lib/dnf ]; then
|
||||
mkdir -p /var/lib/dnf
|
||||
mv /var/lib/yum/yumdb /var/lib/dnf/
|
||||
rm -rf /var/lib/yum/
|
||||
fi
|
||||
|
||||
# make it so that we don't do writing to the overlay for things which
|
||||
# are just tmpdirs/caches
|
||||
# note https://bugzilla.redhat.com/show_bug.cgi?id=1135475
|
||||
@@ -313,8 +299,11 @@ rm -f /core*
|
||||
# convince readahead not to collect
|
||||
# FIXME: for systemd
|
||||
|
||||
echo 'File created by kickstart. See systemd-update-done.service(8).' \
|
||||
| tee /etc/.updated >/var/.updated
|
||||
# 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
|
||||
|
||||
|
||||
@@ -1,51 +0,0 @@
|
||||
# fedora-live-cinnamon.ks
|
||||
#
|
||||
# Description:
|
||||
# - Fedora Live Spin with the Cinnamon Desktop Environment
|
||||
#
|
||||
# Maintainer(s):
|
||||
# - Dan Book <grinnz@grinnz.com>
|
||||
|
||||
%include fedora-live-base.ks
|
||||
%include fedora-live-minimization.ks
|
||||
%include fedora-cinnamon-packages.ks
|
||||
|
||||
part / --size=6144
|
||||
|
||||
%post
|
||||
# cinnamon configuration
|
||||
|
||||
# create /etc/sysconfig/desktop (needed for installation)
|
||||
|
||||
cat > /etc/sysconfig/desktop <<EOF
|
||||
PREFERRED=/usr/bin/cinnamon-session
|
||||
DISPLAYMANAGER=/usr/sbin/lightdm
|
||||
EOF
|
||||
|
||||
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||
|
||||
# set up lightdm autologin
|
||||
sed -i 's/^#autologin-user=.*/autologin-user=liveuser/' /etc/lightdm/lightdm.conf
|
||||
sed -i 's/^#autologin-user-timeout=.*/autologin-user-timeout=0/' /etc/lightdm/lightdm.conf
|
||||
#sed -i 's/^#show-language-selector=.*/show-language-selector=true/' /etc/lightdm/lightdm-gtk-greeter.conf
|
||||
|
||||
# set Cinnamon as default session, otherwise login will fail
|
||||
sed -i 's/^#user-session=.*/user-session=cinnamon/' /etc/lightdm/lightdm.conf
|
||||
|
||||
# Show harddisk install on the desktop
|
||||
sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop
|
||||
mkdir /home/liveuser/Desktop
|
||||
cp /usr/share/applications/liveinst.desktop /home/liveuser/Desktop
|
||||
|
||||
# and mark it as executable
|
||||
chmod +x /home/liveuser/Desktop/liveinst.desktop
|
||||
|
||||
# this goes at the end after all other changes.
|
||||
chown -R liveuser:liveuser /home/liveuser
|
||||
restorecon -R /home/liveuser
|
||||
|
||||
EOF
|
||||
|
||||
%end
|
||||
|
||||
|
||||
@@ -13,11 +13,14 @@
|
||||
part / --size 8192
|
||||
|
||||
%packages
|
||||
|
||||
# graphics
|
||||
blender
|
||||
#LuxRender-blender
|
||||
LuxRender-blender
|
||||
YafaRay-blender
|
||||
bluefish
|
||||
#cinepaint
|
||||
#cmyktool
|
||||
colord-extra-profiles
|
||||
darktable
|
||||
dia
|
||||
@@ -75,10 +78,6 @@ lato-fonts
|
||||
open-sans-fonts
|
||||
overpass-fonts
|
||||
|
||||
# Extra wallpapers
|
||||
f23-backgrounds-extras-base
|
||||
f23-backgrounds-extras-gnome
|
||||
|
||||
# removal of unneeded applications
|
||||
-gnome-boxes
|
||||
-gthumb
|
||||
@@ -101,7 +100,7 @@ cat >> /usr/share/applications/list-design-tutorials.desktop << FOE
|
||||
Name=List of design tutorials
|
||||
GenericName=List of Tutorials for Designers
|
||||
Comment=Reference of Design Related Tutorials
|
||||
Exec=xdg-open https://fedoraproject.org/wiki/Design_Suite/Tutorials
|
||||
Exec=xdg-open http://fedoraproject.org/wiki/Design_Suite/Tutorials
|
||||
Type=Application
|
||||
Icon=applications-graphics
|
||||
Categories=Graphics;Documentation;
|
||||
@@ -111,10 +110,10 @@ 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=Design Suite Info
|
||||
GenericName=About Design Suite
|
||||
Comment=Wiki page of Design Suite
|
||||
Exec=xdg-open https://fedoraproject.org/wiki/Design_Suite
|
||||
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;
|
||||
@@ -124,10 +123,10 @@ 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=Design Team Info
|
||||
GenericName=About Design Team
|
||||
Name=About Design Suite
|
||||
GenericName=About Design Suite Wiki Page
|
||||
Comment=Wiki page of Design Team
|
||||
Exec=xdg-open https://fedoraproject.org/wiki/Design
|
||||
Exec=xdg-open http://fedoraproject.org/wiki/Design
|
||||
Type=Application
|
||||
Icon=applications-internet
|
||||
Categories=Documentation;
|
||||
@@ -138,3 +137,4 @@ chmod a+x /usr/share/applications/fedora-design-team.desktop
|
||||
glib-compile-schemas /usr/share/glib-2.0/schemas
|
||||
|
||||
%end
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
# https://fedoraproject.org/wiki/User:jvlomax
|
||||
# Brendan Jones <brendan.jones.it@gmail.com>
|
||||
|
||||
%include fedora-live-kde.ks
|
||||
%include fedora-livecd-kde.ks
|
||||
|
||||
# DVD size partition
|
||||
part / --size 10240 --fstype ext4
|
||||
@@ -40,7 +40,6 @@ jack-audio-connection-kit
|
||||
jack-audio-connection-kit-dbus
|
||||
qjackctl
|
||||
jackctlmmc
|
||||
ffado
|
||||
|
||||
#pulse
|
||||
pulseaudio-module-jack
|
||||
@@ -77,7 +76,7 @@ sooperlooper
|
||||
|
||||
#recodring and DAW
|
||||
audacity
|
||||
ardour4
|
||||
ardour3
|
||||
rosegarden4
|
||||
seq24
|
||||
muse
|
||||
@@ -200,12 +199,12 @@ thunderbird
|
||||
%post
|
||||
|
||||
#setup kickoff favorites
|
||||
/bin/mkdir -p /etc/skel/.config
|
||||
/bin/mkdir -p /etc/skel/.kde/share/config
|
||||
|
||||
JAMFAVORITES=/usr/share/applications/firefox.desktop,/usr/share/applications/qjackctl.desktop,/usr/share/applications/qtractor.desktop,/usr/share/applications/frescobaldi.desktop,/usr/share/applications/org.kde.konsole.desktop,/usr/share/applications/kde4/dolphin.desktop,/usr/share/applications/systemsettings.desktop,/usr/share/applications/pavucontrol.desktop,/usr/share/applications/kde4/kfmclient_html.desktop,/usr/share/applications/kde4/Kontact.desktop,/usr/share/applications/kde4/ktp-contactlist.desktop
|
||||
JAMFAVORITES=/usr/share/applications/firefox.desktop,/usr/share/applications/qjackctl.desktop,/usr/share/applications/qtractor.desktop,/usr/share/applications/frescobaldi.desktop,/usr/share/applications/kde4/konsole.desktop,/usr/share/applications/kde4/dolphin.desktop,/usr/share/applications/kde4/systemsettings.desktop
|
||||
JAMFAVORITESLIVE=/usr/share/applications/liveinst.desktop,$JAMFAVORITES
|
||||
|
||||
cat <<EOF >> /etc/skel/.config/kickoffrc
|
||||
cat <<EOF >> /etc/skel/.kde/share/config/kickoffrc
|
||||
[Favorites]
|
||||
FavoriteURLs=$JAMFAVORITES
|
||||
EOF
|
||||
|
||||
@@ -7,21 +7,38 @@
|
||||
|
||||
%post
|
||||
|
||||
# set default GTK+ theme for root (see #683855, #689070, #808062)
|
||||
# create /etc/sysconfig/desktop (needed for installation)
|
||||
cat > /etc/sysconfig/desktop <<EOF
|
||||
DESKTOP="KDE"
|
||||
DISPLAYMANAGER="KDE"
|
||||
EOF
|
||||
|
||||
# make oxygen-gtk the default GTK+ theme for root (see #683855, #689070, #808062)
|
||||
cat > /root/.gtkrc-2.0 << EOF
|
||||
include "/usr/share/themes/Adwaita/gtk-2.0/gtkrc"
|
||||
include "/usr/share/themes/oxygen-gtk/gtk-2.0/gtkrc"
|
||||
include "/etc/gtk-2.0/gtkrc"
|
||||
gtk-theme-name="Adwaita"
|
||||
gtk-theme-name="oxygen-gtk"
|
||||
EOF
|
||||
mkdir -p /root/.config/gtk-3.0
|
||||
cat > /root/.config/gtk-3.0/settings.ini << EOF
|
||||
[Settings]
|
||||
gtk-theme-name = Adwaita
|
||||
gtk-theme-name = oxygen-gtk
|
||||
EOF
|
||||
|
||||
# add initscript
|
||||
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||
|
||||
if [ -e /usr/share/icons/hicolor/96x96/apps/fedora-logo-icon.png ] ; then
|
||||
# use image also for kdm
|
||||
mkdir -p /usr/share/apps/kdm/faces
|
||||
cp /usr/share/icons/hicolor/96x96/apps/fedora-logo-icon.png /usr/share/apps/kdm/faces/fedora.face.icon
|
||||
fi
|
||||
|
||||
# make liveuser use KDE
|
||||
echo "startkde" > /home/liveuser/.xsession
|
||||
chmod a+x /home/liveuser/.xsession
|
||||
chown liveuser:liveuser /home/liveuser/.xsession
|
||||
|
||||
# set up autologin for user liveuser
|
||||
if [ -f /etc/sddm.conf ]; then
|
||||
sed -i 's/^#User=.*/User=liveuser/' /etc/sddm.conf
|
||||
@@ -35,18 +52,26 @@ SDDM_EOF
|
||||
fi
|
||||
|
||||
# add liveinst.desktop to favorites menu
|
||||
mkdir -p /home/liveuser/.config/
|
||||
cat > /home/liveuser/.config/kickoffrc << MENU_EOF
|
||||
mkdir -p /home/liveuser/.kde/share/config/
|
||||
cat > /home/liveuser/.kde/share/config/kickoffrc << MENU_EOF
|
||||
[Favorites]
|
||||
FavoriteURLs=/usr/share/applications/firefox.desktop,/usr/share/applications/org.kde.dolphin.desktop,/usr/share/applications/systemsettings.desktop,/usr/share/applications/org.kde.konsole.desktop,/usr/share/applications/liveinst.desktop
|
||||
FavoriteURLs=/usr/share/applications/kde4/konqbrowser.desktop,/usr/share/applications/kde4/dolphin.desktop,/usr/share/applications/kde4/systemsettings.desktop,/usr/share/applications/liveinst.desktop
|
||||
MENU_EOF
|
||||
|
||||
# show liveinst.desktop on desktop and in menu
|
||||
sed -i 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop
|
||||
# set executable bit disable KDE security warning
|
||||
|
||||
# chmod +x ~/Desktop/liveinst.desktop to disable KDE's security warning
|
||||
chmod +x /usr/share/applications/liveinst.desktop
|
||||
mkdir /home/liveuser/Desktop
|
||||
cp -a /usr/share/applications/liveinst.desktop /home/liveuser/Desktop/
|
||||
|
||||
# copy over the icons for liveinst to hicolor
|
||||
cp /usr/share/icons/gnome/16x16/apps/system-software-install.png /usr/share/icons/hicolor/16x16/apps/
|
||||
cp /usr/share/icons/gnome/22x22/apps/system-software-install.png /usr/share/icons/hicolor/22x22/apps/
|
||||
cp /usr/share/icons/gnome/24x24/apps/system-software-install.png /usr/share/icons/hicolor/24x24/apps/
|
||||
cp /usr/share/icons/gnome/32x32/apps/system-software-install.png /usr/share/icons/hicolor/32x32/apps/
|
||||
cp /usr/share/icons/gnome/48x48/apps/system-software-install.png /usr/share/icons/hicolor/48x48/apps/
|
||||
cp /usr/share/icons/gnome/256x256/apps/system-software-install.png /usr/share/icons/hicolor/256x256/apps/
|
||||
touch /usr/share/icons/hicolor/
|
||||
|
||||
# Set akonadi backend
|
||||
mkdir -p /home/liveuser/.config/akonadi
|
||||
@@ -55,14 +80,23 @@ cat > /home/liveuser/.config/akonadi/akonadiserverrc << AKONADI_EOF
|
||||
Driver=QSQLITE3
|
||||
AKONADI_EOF
|
||||
|
||||
# Disable plasma-pk-updates
|
||||
sed -i \
|
||||
-e "s|^X-KDE-PluginInfo-EnabledByDefault=true|X-KDE-PluginInfo-EnabledByDefault=false|g" \
|
||||
/usr/share/plasma/plasmoids/org.kde.plasma.pkupdates/metadata.desktop \
|
||||
/usr/share/kservices5/plasma-applet-org.kde.plasma.pkupdates.desktop
|
||||
# Disable the update notifications of apper
|
||||
cat > /home/liveuser/.kde/share/config/apper << APPER_EOF
|
||||
[CheckUpdate]
|
||||
autoUpdate=0
|
||||
distroUpgrade=0
|
||||
interval=0
|
||||
APPER_EOF
|
||||
|
||||
# Disable some kded modules
|
||||
# apperd: http://bugzilla.redhat.com/948099
|
||||
cat > /home/liveuser/.kde/share/config/kdedrc << KDEDRC_EOF
|
||||
[Module-apperd]
|
||||
autoload=false
|
||||
KDEDRC_EOF
|
||||
|
||||
# Disable baloo
|
||||
cat > /home/liveuser/.config/baloofilerc << BALOO_EOF
|
||||
cat > /home/liveuser/.kde/share/config/baloofilerc << BALOO_EOF
|
||||
[Basic Settings]
|
||||
Indexing-Enabled=false
|
||||
BALOO_EOF
|
||||
@@ -73,16 +107,24 @@ cat > /home/liveuser/.kde/share/config/kres-migratorrc << KRES_EOF
|
||||
Enabled=false
|
||||
KRES_EOF
|
||||
|
||||
# Disable kwallet migrator
|
||||
cat > /home/liveuser/.config/kwalletrc << KWALLET_EOL
|
||||
[Migration]
|
||||
alreadyMigrated=true
|
||||
KWALLET_EOL
|
||||
# Disable nepomuk
|
||||
cat > /home/liveuser/.kde/share/config/nepomukserverrc << NEPOMUK_EOF
|
||||
[Basic Settings]
|
||||
Start Nepomuk=false
|
||||
|
||||
[Service-nepomukfileindexer]
|
||||
autostart=false
|
||||
NEPOMUK_EOF
|
||||
|
||||
# make sure to set the right permissions and selinux contexts
|
||||
chown -R liveuser:liveuser /home/liveuser/
|
||||
restorecon -R /home/liveuser/
|
||||
|
||||
# small hack to enable plasma-netbook workspace on boot
|
||||
if strstr "\`cat /proc/cmdline\`" netbook ; then
|
||||
mv /usr/share/autostart/plasma-desktop.desktop /usr/share/autostart/plasma-netbook.desktop
|
||||
sed -i 's/desktop/netbook/g' /usr/share/autostart/plasma-netbook.desktop
|
||||
fi
|
||||
EOF
|
||||
|
||||
%end
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
# fedora-livecd-kde.ks
|
||||
# fedora-live-kde.ks
|
||||
#
|
||||
# Description:
|
||||
# - Fedora Live Spin with the K Desktop Environment (KDE), default 1.4 GB version
|
||||
# - Fedora Live Spin with the K Desktop Environment (KDE), 2 GiB version
|
||||
# see fedora-livecd-kde.ks for the default 1.4 GiB version
|
||||
#
|
||||
# Maintainer(s):
|
||||
# - Sebastian Vahl <fedora@deadbabylon.de>
|
||||
@@ -11,62 +12,33 @@
|
||||
%include fedora-live-minimization.ks
|
||||
|
||||
# DVD payload
|
||||
part / --size=6144
|
||||
part / --size=8192
|
||||
|
||||
|
||||
%packages
|
||||
# unwanted packages from @kde-desktop
|
||||
# don't include these for now to fit on a cd
|
||||
# ship KDE wallpapers instead of GNOME ones
|
||||
-desktop-backgrounds-basic
|
||||
-kdeaccessibility*
|
||||
-kdeartwork-screensavers # screensavers are not needed on live images
|
||||
#-ktorrent # kget has also basic torrent features (~3 megs)
|
||||
-digikam # digikam has duplicate functionality with gwenview (~28 megs)
|
||||
#-amarok # ~23 megs (mysql-embedded etc.)
|
||||
-kipi-plugins # ~8 megs + drags in Marble
|
||||
#-kdeplasma-addons # ~16 megs
|
||||
#-krusader # ~4 megs
|
||||
kde-wallpapers
|
||||
|
||||
# Additional packages that are not default in kde-* groups, but useful
|
||||
# Additional packages that are not default in kde-desktop but useful
|
||||
k3b # ~15 megs
|
||||
#kdeartwork # only include some parts of kdeartwork
|
||||
fuse
|
||||
liveusb-creator
|
||||
#pavucontrol # pavucontrol has duplicate functionality with kmix
|
||||
krusader # file manager, more power-user-oriented than Dolphin (~4 megs)
|
||||
|
||||
# only include kdegames-minimal
|
||||
-kdegames
|
||||
kdegames-minimal
|
||||
# kdeedu apps
|
||||
@kde-education
|
||||
|
||||
### space issues
|
||||
# Cantor backends
|
||||
cantor-R # Cantor R backend, built against R-core at compile time
|
||||
maxima # runtime dependency of the Cantor Maxima backend
|
||||
octave # runtime dependency of the Cantor Octave backend
|
||||
|
||||
# fonts (we make no bones about admitting we're english-only)
|
||||
wqy-microhei-fonts # a compact CJK font, to replace:
|
||||
-naver-nanum-gothic-fonts # Korean
|
||||
-vlgothic-fonts # Japanese
|
||||
-adobe-source-han-sans-cn-fonts # simplified Chinese
|
||||
-adobe-source-han-sans-twhk-fonts # traditional Chinese
|
||||
|
||||
-paratype-pt-sans-fonts # Cyrillic (already supported by DejaVu), huge
|
||||
#-stix-fonts # mathematical symbols
|
||||
|
||||
# remove input methods to free space
|
||||
-@input-methods
|
||||
-scim*
|
||||
-m17n*
|
||||
-ibus*
|
||||
-iok
|
||||
|
||||
# save some space (from @standard)
|
||||
-make
|
||||
|
||||
# admin-tools
|
||||
-gnome-disk-utility
|
||||
# kcm_clock still lacks some features, so keep system-config-date around
|
||||
#-system-config-date
|
||||
# prefer kcm_systemd
|
||||
-system-config-services
|
||||
# prefer/use kusers
|
||||
-system-config-users
|
||||
# KDE 4 translations
|
||||
kde-l10n-*
|
||||
calligra-l10n-*
|
||||
|
||||
## avoid serious bugs by omitting broken stuff
|
||||
|
||||
|
||||
@@ -1,50 +1,11 @@
|
||||
# Desktop with customizations to fit in a CD (package removals, etc.)
|
||||
# Maintained by the Fedora Desktop SIG:
|
||||
# http://fedoraproject.org/wiki/SIGs/Desktop
|
||||
# mailto:desktop@lists.fedoraproject.org
|
||||
|
||||
%include fedora-live-base.ks
|
||||
%include fedora-mate-packages.ks
|
||||
%include fedora-live-minimization.ks
|
||||
|
||||
part / --size 6144
|
||||
|
||||
%packages
|
||||
|
||||
# Drop things for size
|
||||
-@3d-printing
|
||||
-brasero
|
||||
-colord
|
||||
-fedora-icon-theme
|
||||
-GConf2
|
||||
-gnome-bluetooth-libs
|
||||
-gnome-icon-theme
|
||||
-gnome-icon-theme-symbolic
|
||||
-gnome-software
|
||||
-gnome-themes
|
||||
-gnome-themes-standard
|
||||
-gnome-user-docs
|
||||
|
||||
-@mate-applications
|
||||
-mate-icon-theme-faenza
|
||||
|
||||
# Drop oversized fonts that aren't needed
|
||||
|
||||
# Drop things that pull in perl
|
||||
|
||||
# Dictionaries are big
|
||||
# we're going to try keeping hunspell-* after notting, davidz, and ajax voiced
|
||||
# strong preference to giving it a go on #fedora-desktop.
|
||||
# also see http://bugzilla.gnome.org/681084
|
||||
|
||||
# Help and art can be big, too
|
||||
-gnome-user-docs
|
||||
-evolution-help
|
||||
|
||||
# Legacy cmdline things we don't want
|
||||
-telnet
|
||||
|
||||
%end
|
||||
part / --size 4096
|
||||
|
||||
%post
|
||||
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||
|
||||
@@ -4,12 +4,14 @@
|
||||
|
||||
%include fedora-live-base.ks
|
||||
%include fedora-workstation-packages.ks
|
||||
%include snippets/packagekit-cached-metadata.ks
|
||||
|
||||
part / --size 6144
|
||||
|
||||
%post
|
||||
|
||||
# This is a huge file and things work ok without it
|
||||
rm -f /usr/share/icons/HighContrast/icon-theme.cache
|
||||
|
||||
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||
|
||||
|
||||
|
||||
76
fedora-livecd-kde.ks
Normal file
76
fedora-livecd-kde.ks
Normal file
@@ -0,0 +1,76 @@
|
||||
# fedora-livecd-kde.ks
|
||||
#
|
||||
# Description:
|
||||
# - Fedora Live Spin with the K Desktop Environment (KDE), default 1.4 GB version
|
||||
#
|
||||
# Maintainer(s):
|
||||
# - Sebastian Vahl <fedora@deadbabylon.de>
|
||||
# - Fedora KDE SIG, http://fedoraproject.org/wiki/SIGs/KDE, kde@lists.fedoraproject.org
|
||||
|
||||
%include fedora-live-kde-base.ks
|
||||
%include fedora-live-minimization.ks
|
||||
|
||||
# DVD payload
|
||||
part / --size=4096
|
||||
|
||||
|
||||
%packages
|
||||
# unwanted packages from @kde-desktop
|
||||
# don't include these for now to fit on a cd
|
||||
-desktop-backgrounds-basic
|
||||
-kdeaccessibility*
|
||||
-kdeartwork-screensavers # screensavers are not needed on live images
|
||||
#-ktorrent # kget has also basic torrent features (~3 megs)
|
||||
-digikam # digikam has duplicate functionality with gwenview (~28 megs)
|
||||
#-amarok # ~23 megs (mysql-embedded etc.)
|
||||
-kipi-plugins # ~8 megs + drags in Marble
|
||||
#-kdeplasma-addons # ~16 megs
|
||||
#-krusader # ~4 megs
|
||||
|
||||
# Additional packages that are not default in kde-* groups, but useful
|
||||
k3b # ~15 megs
|
||||
#kdeartwork # only include some parts of kdeartwork
|
||||
fuse
|
||||
liveusb-creator
|
||||
|
||||
# only include kdegames-minimal
|
||||
-kdegames
|
||||
kdegames-minimal
|
||||
|
||||
### space issues
|
||||
|
||||
# fonts (we make no bones about admitting we're english-only)
|
||||
wqy-microhei-fonts # a compact CJK font, to replace:
|
||||
-naver-nanum-gothic-fonts # Korean
|
||||
-vlgothic-fonts # Japanese
|
||||
-adobe-source-han-sans-cn-fonts # simplified Chinese
|
||||
-adobe-source-han-sans-twhk-fonts # traditional Chinese
|
||||
|
||||
-paratype-pt-sans-fonts # Cyrillic (already supported by DejaVu), huge
|
||||
#-stix-fonts # mathematical symbols
|
||||
|
||||
# remove input methods to free space
|
||||
-@input-methods
|
||||
-scim*
|
||||
-m17n*
|
||||
-ibus*
|
||||
-iok
|
||||
|
||||
# save some space (from @standard)
|
||||
-make
|
||||
|
||||
# admin-tools
|
||||
-gnome-disk-utility
|
||||
# kcm_clock still lacks some features, so keep system-config-date around
|
||||
#-system-config-date
|
||||
# prefer kcm_systemd
|
||||
-system-config-services
|
||||
# prefer/use kusers
|
||||
-system-config-users
|
||||
|
||||
## avoid serious bugs by omitting broken stuff
|
||||
|
||||
%end
|
||||
|
||||
%post
|
||||
%end
|
||||
77
fedora-livecd-mate_compiz.ks
Normal file
77
fedora-livecd-mate_compiz.ks
Normal file
@@ -0,0 +1,77 @@
|
||||
# Desktop with customizations to fit in a CD (package removals, etc.)
|
||||
# Maintained by the Fedora Desktop SIG:
|
||||
# http://fedoraproject.org/wiki/SIGs/Desktop
|
||||
# mailto:desktop@lists.fedoraproject.org
|
||||
|
||||
%include fedora-live-mate_compiz.ks
|
||||
%include fedora-live-minimization.ks
|
||||
|
||||
%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
|
||||
audacious
|
||||
|
||||
# office
|
||||
@libreoffice
|
||||
|
||||
# dsl tools
|
||||
rp-pppoe
|
||||
|
||||
# First, no office
|
||||
#-planner
|
||||
|
||||
# Drop things for size
|
||||
-@3d-printing
|
||||
-brasero
|
||||
-bluez
|
||||
-bluez-cups
|
||||
-colord
|
||||
-@dial-up
|
||||
-espeak
|
||||
-fedora-icon-theme
|
||||
-GConf2
|
||||
-gnome-bluetooth-libs
|
||||
-gnome-icon-theme
|
||||
-gnome-icon-theme-symbolic
|
||||
-gnome-software
|
||||
-gnome-themes
|
||||
-gnome-themes-standard
|
||||
-gnome-user-docs
|
||||
|
||||
-@mate-applications
|
||||
-mate-icon-theme-faenza
|
||||
-NetworkManager-bluetooth
|
||||
|
||||
# Drop oversized fonts that aren't needed
|
||||
|
||||
# Drop things that pull in perl
|
||||
|
||||
# Dictionaries are big
|
||||
# we're going to try keeping hunspell-* after notting, davidz, and ajax voiced
|
||||
# strong preference to giving it a go on #fedora-desktop.
|
||||
# also see http://bugzilla.gnome.org/681084
|
||||
|
||||
# Help and art can be big, too
|
||||
-gnome-user-docs
|
||||
-evolution-help
|
||||
-desktop-backgrounds-basic
|
||||
-*backgrounds-extras
|
||||
|
||||
# Legacy cmdline things we don't want
|
||||
|
||||
%end
|
||||
|
||||
%post
|
||||
# This is a huge file and things work ok without it
|
||||
rm -f /usr/share/icons/HighContrast/icon-theme.cache
|
||||
|
||||
%end
|
||||
@@ -94,6 +94,9 @@ gnome-keyring-pam
|
||||
%post
|
||||
# xfce configuration
|
||||
|
||||
# This is a huge file and things work ok without it
|
||||
rm -f /usr/share/icons/HighContrast/icon-theme.cache
|
||||
|
||||
# create /etc/sysconfig/desktop (needed for installation)
|
||||
|
||||
cat > /etc/sysconfig/desktop <<EOF
|
||||
@@ -51,7 +51,6 @@ org.laptop.StopWatchActivity
|
||||
org.laptop.community.Finance
|
||||
org.laptop.community.TypingTurtle
|
||||
org.laptop.sugar.Jukebox
|
||||
org.laptop.Words
|
||||
org.eq.FotoToon
|
||||
org.gnome.Labyrinth
|
||||
com.laptop.Ruler
|
||||
@@ -59,7 +58,6 @@ org.sugarlabs.AbacusActivity
|
||||
org.sugarlabs.IRC
|
||||
org.sugarlabs.InfoSlicer
|
||||
org.sugarlabs.PortfolioActivity
|
||||
org.sugarlabs.StoryActivity
|
||||
org.sugarlabs.VisualMatchActivity
|
||||
com.garycmartin.Moon
|
||||
mulawa.Countries
|
||||
@@ -16,6 +16,9 @@
|
||||
%post
|
||||
# xfce configuration
|
||||
|
||||
# This is a huge file and things work ok without it
|
||||
rm -f /usr/share/icons/HighContrast/icon-theme.cache
|
||||
|
||||
# create /etc/sysconfig/desktop (needed for installation)
|
||||
|
||||
cat > /etc/sysconfig/desktop <<EOF
|
||||
59
fedora-livedvd-electronic_lab.ks
Normal file
59
fedora-livedvd-electronic_lab.ks
Normal file
@@ -0,0 +1,59 @@
|
||||
# Description : Live DVD image for Fedora/Free Electronic Lab
|
||||
#
|
||||
# Maintainer(s):
|
||||
# - Chitlesh Goorah <chitlesh a fedoraproject.org>
|
||||
# - Thibault North <tnorth a fedoraproject.org>
|
||||
|
||||
%include fedora-live-workstation.ks
|
||||
|
||||
# DVD payload
|
||||
part / --size 10240
|
||||
|
||||
%packages
|
||||
|
||||
@electronic-lab
|
||||
|
||||
# Support for the Milkymist hardware community
|
||||
@milkymist
|
||||
|
||||
|
||||
# Office
|
||||
dia
|
||||
vym
|
||||
libreoffice-writer
|
||||
libreoffice-calc
|
||||
libreoffice-impress
|
||||
#libreoffice-extendedPDF
|
||||
planner
|
||||
graphviz
|
||||
|
||||
|
||||
# debugging tools
|
||||
make
|
||||
gdb
|
||||
valgrind
|
||||
kdbg
|
||||
wireshark-gnome
|
||||
qemu
|
||||
|
||||
|
||||
# EDA/CAD department
|
||||
perl-Test-Pod
|
||||
perl-Test-Pod-Coverage
|
||||
|
||||
|
||||
# Removing unnecessary packages from the desktop spin
|
||||
-abiword
|
||||
-@games
|
||||
-gimp
|
||||
-gimp-libs
|
||||
-gimp-data-extras
|
||||
-kdebluetooth
|
||||
-kbluetooth
|
||||
-rdesktop
|
||||
|
||||
%end
|
||||
|
||||
%post
|
||||
|
||||
%end
|
||||
@@ -4,7 +4,7 @@
|
||||
# - Bruno Wolff III <bruno@wolff.to>
|
||||
# - Formerly maintained by Rahul Sundaram
|
||||
|
||||
%include fedora-live-xfce.ks
|
||||
%include fedora-livecd-xfce.ks
|
||||
|
||||
# The recommended part size for DVDs is too close to use for the games spin
|
||||
part / --size 10240
|
||||
@@ -20,9 +20,6 @@ part / --size 10240
|
||||
# will likely put the games spin over size and it is freeze time.
|
||||
-libreoffice*
|
||||
|
||||
# Extra screensavers isn't much help for the games spin
|
||||
-xscreensaver-extras
|
||||
|
||||
# Allow joysticks and game pads to work
|
||||
joystick-support
|
||||
|
||||
@@ -35,13 +32,13 @@ armacycles-ad
|
||||
asc
|
||||
asc-music
|
||||
astromenace
|
||||
# beneath-a-steel-sky-cd scummvm games cut for size
|
||||
boswars
|
||||
beneath-a-steel-sky-cd
|
||||
#boswars # currently not building
|
||||
btanks
|
||||
bzflag
|
||||
crossfire-client
|
||||
extremetuxracer
|
||||
# flight-of-the-amazon-queen-cd scummvm games cut for size
|
||||
flight-of-the-amazon-queen-cd
|
||||
freeciv
|
||||
freecol
|
||||
freedoom
|
||||
@@ -65,15 +62,15 @@ supertux
|
||||
ultimatestunts
|
||||
warzone2100
|
||||
wesnoth
|
||||
# worminator # Would pull in fluid-soundfont-lite-patches
|
||||
worminator
|
||||
warmux
|
||||
xmoto
|
||||
|
||||
# traditional (small)
|
||||
|
||||
abe
|
||||
# alex4 # Would pull in fluid-soundfont-lite-patches
|
||||
# ballz # Would pull in fluid-soundfont-lite-patches
|
||||
alex4
|
||||
ballz
|
||||
blobwars
|
||||
bombardier
|
||||
cdogs-sdl
|
||||
@@ -88,11 +85,11 @@ hedgewars
|
||||
kcheckers
|
||||
knights
|
||||
lbrickbuster2
|
||||
# liquidwar # Would pull in fluid-soundfont-lite-patches
|
||||
liquidwar
|
||||
londonlaw
|
||||
lordsawar
|
||||
# lure scummvm games cut for size
|
||||
# machineball # Would pull in fluid-soundfont-lite-patches
|
||||
lure
|
||||
machineball
|
||||
nethack
|
||||
openlierox
|
||||
pachi
|
||||
@@ -100,7 +97,7 @@ pioneers
|
||||
quarry
|
||||
Ri-li
|
||||
rogue
|
||||
# scorchwentbonkers # Would pull in fluid-soundfont-lite-patches
|
||||
scorchwentbonkers
|
||||
seahorse-adventures
|
||||
solarwolf
|
||||
sopwith
|
||||
@@ -112,11 +109,11 @@ xblast
|
||||
|
||||
auriferous
|
||||
alienblaster
|
||||
# duel3 # Would pull in fluid-soundfont-lite-patches
|
||||
duel3
|
||||
lmarbles
|
||||
powermanga
|
||||
# raidem # Would pull in fluid-soundfont-lite-patches
|
||||
# raidem-music # Would pull in fluid-soundfont-lite-patches
|
||||
raidem
|
||||
raidem-music
|
||||
trackballs
|
||||
trackballs-music
|
||||
|
||||
@@ -126,7 +123,7 @@ ballbuster
|
||||
CriticalMass
|
||||
dd2
|
||||
KoboDeluxe
|
||||
# lacewing # Would pull in fluid-soundfont-lite-patches
|
||||
lacewing
|
||||
Maelstrom
|
||||
methane
|
||||
njam
|
||||
@@ -135,13 +132,13 @@ shippy
|
||||
tecnoballz
|
||||
wordwarvi
|
||||
xgalaxy
|
||||
# zasx # Would pull in fluid-soundfont-lite-patches
|
||||
zasx
|
||||
|
||||
# falling blocks games (small)
|
||||
|
||||
amoebax
|
||||
crack-attack
|
||||
# crystal-stacker # Would pull in fluid-soundfont-lite-patches
|
||||
crystal-stacker
|
||||
gemdropx
|
||||
gweled
|
||||
|
||||
@@ -153,7 +150,7 @@ pingus
|
||||
# puzzles (small)
|
||||
|
||||
escape
|
||||
# gbrainy Removed for space - only game that pulls in mono
|
||||
gbrainy
|
||||
magicor
|
||||
mirrormagic
|
||||
pipenightdreams
|
||||
@@ -110,6 +110,8 @@ pdfshuffler
|
||||
openmpi
|
||||
openmpi-devel
|
||||
valgrind-openmpi
|
||||
pvm
|
||||
pvm-gui #will install 'pvm' as well
|
||||
libgomp
|
||||
python-pp
|
||||
mpi4py-openmpi
|
||||
@@ -1,5 +1,7 @@
|
||||
%packages
|
||||
-PackageKit* # we switched to yumex, so we don't need this
|
||||
-ConsoleKit # ConsoleKit is deprecated
|
||||
-ConsoleKit-x11 # ConsoleKit is deprecated
|
||||
firefox
|
||||
@mate
|
||||
compiz
|
||||
@@ -16,40 +18,13 @@ emerald-themes
|
||||
emerald
|
||||
fusion-icon
|
||||
fusion-icon-gtk
|
||||
@networkmanager-submodules
|
||||
blueman
|
||||
|
||||
# some apps from mate-applications
|
||||
caja-actions
|
||||
mate-disk-usage-analyzer
|
||||
mate-netspeed
|
||||
|
||||
# more backgrounds
|
||||
f23-backgrounds-base
|
||||
f23-backgrounds-mate
|
||||
f23-backgrounds-extras-base
|
||||
|
||||
# system tools
|
||||
system-config-printer
|
||||
system-config-printer-applet
|
||||
lightdm-gtk-greeter-settings
|
||||
|
||||
# audio video
|
||||
parole
|
||||
exaile
|
||||
PackageKit-gstreamer-plugin
|
||||
|
||||
# blacklist applications which breaks mate-desktop
|
||||
-audacious
|
||||
|
||||
# office
|
||||
@libreoffice
|
||||
|
||||
# dsl tools
|
||||
rp-pppoe
|
||||
@networkmanager-submodules
|
||||
|
||||
# FIXME; apparently the glibc maintainers dislike this, but it got put into the
|
||||
# desktop image at some point. We won't touch this one for now.
|
||||
nss-mdns
|
||||
|
||||
# This one needs to be kicked out of @standard
|
||||
-smartmontools
|
||||
%end
|
||||
|
||||
@@ -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
|
||||
|
||||
72
fedora-virt-server.ks.in
Normal file
72
fedora-virt-server.ks.in
Normal file
@@ -0,0 +1,72 @@
|
||||
# Kickstart file to create a small "base" Fedora image install suitable
|
||||
# for use as e.g. an application server.
|
||||
#
|
||||
# Maintainer: fedora-cloud-list@fedoraproject.org
|
||||
#
|
||||
# REQUIRED variables:
|
||||
# @@PUBLIC_KEY@@ - ssh public key
|
||||
#
|
||||
# You must search for all required variables and replace them.
|
||||
# Example usage:
|
||||
# sed -e s,@@PUBLIC_KEY@@,"$(cat ~/.ssh/authorized_keys)", fedora-virt-server.ks.in > my-fedora-server.ks
|
||||
|
||||
lang C
|
||||
keyboard us
|
||||
timezone --utc GMT/Zulu
|
||||
auth --useshadow --enablemd5
|
||||
firewall --service=ssh
|
||||
bootloader --timeout=1 --append="acpi=force"
|
||||
network --bootproto=dhcp --device=eth0 --onboot=on
|
||||
services --enabled=network
|
||||
|
||||
## IMPORTANT ##
|
||||
## EDIT HERE ##
|
||||
# ROOT PASSWORD:
|
||||
# Setting a root password is NOT RECOMMENDED, especially if your
|
||||
# server will be accessible to the public internet. This is
|
||||
# because of the rise of automated ssh password guessing attacks.
|
||||
# You should instead (if you don't have one already)
|
||||
# generate a public ssh key:
|
||||
# http://sial.org/howto/openssh/publickey-auth/
|
||||
#
|
||||
# See comment below in %post for authorizing your public
|
||||
# key for the root account.
|
||||
|
||||
rootpw ""
|
||||
|
||||
# However, if you choose instead to make a password,
|
||||
# you will need to replace the above line with one like
|
||||
# rootpw --iscrypted @@ROOT_PASSWORD_CRYPTED@@
|
||||
# If you do neither of these things, you will not be able to log
|
||||
# into your machine.
|
||||
|
||||
clearpart --all --initlabel
|
||||
part / --size=550 --grow --fstype=ext4
|
||||
# You may change this if you don't want swap
|
||||
part swap --recommended
|
||||
|
||||
%packages
|
||||
@standard
|
||||
%end
|
||||
|
||||
#
|
||||
# Add custom post scripts after the base post.
|
||||
#
|
||||
%post
|
||||
|
||||
## EDIT HERE ##
|
||||
cd /root
|
||||
if ! test -d .ssh; then
|
||||
mkdir --mode=700 .ssh
|
||||
fi
|
||||
cat >> .ssh/authorized_keys << END_AUTHORIZED_KEYS
|
||||
@@PUBLIC_KEY@@
|
||||
END_AUTHORIZED_KEYS
|
||||
chmod 600 .ssh/authorized_keys
|
||||
if -x /usr/sbin/selinuxenabled && /usr/sbin/selinuxenabled; then
|
||||
chcon -R -h -t home_ssh_t .ssh
|
||||
fi
|
||||
|
||||
%end
|
||||
|
||||
reboot
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
# Exclude unwanted groups that fedora-live-base.ks pulls in
|
||||
-@dial-up
|
||||
-@fedora-release-nonproduct
|
||||
-@input-methods
|
||||
-@standard
|
||||
|
||||
@@ -9,7 +10,6 @@
|
||||
# workstation-product-environment in comps
|
||||
@base-x
|
||||
@core
|
||||
@firefox
|
||||
@fonts
|
||||
@guest-desktop-agents
|
||||
@hardware-support
|
||||
|
||||
@@ -25,10 +25,6 @@ gnome-keyring-pam
|
||||
# Note that blank is still default.
|
||||
xscreensaver-extras
|
||||
wget
|
||||
# Handy for debugging
|
||||
rfkill
|
||||
# Better more popular browser
|
||||
firefox
|
||||
system-config-printer
|
||||
|
||||
# save some space
|
||||
|
||||
12
snippets/autologin-gdm.ks
Normal file
12
snippets/autologin-gdm.ks
Normal file
@@ -0,0 +1,12 @@
|
||||
# %post modifications for gdm
|
||||
|
||||
cat >> /etc/rc.d/init.d/fedora-live << EOF
|
||||
chown -R fedora:fedora /home/fedora
|
||||
sed -i -e 's/\[daemon\]/[daemon]\nTimedLoginEnable=true\nTimedLogin=fedora\nTimedLoginDelay=60/' /etc/gdm/custom.conf
|
||||
if [ -e /usr/share/icons/hicolor/96x96/apps/fedora-logo-icon.png ] ; then
|
||||
cp /usr/share/icons/hicolor/96x96/apps/fedora-logo-icon.png /home/fedora/.face
|
||||
chown fedora:fedora /home/fedora/.face
|
||||
# TODO: would be nice to get e-d-s to pick this one up too... but how?
|
||||
fi
|
||||
EOF
|
||||
|
||||
33
snippets/autologin-kdm.ks
Normal file
33
snippets/autologin-kdm.ks
Normal file
@@ -0,0 +1,33 @@
|
||||
# %post modifications for kdm and kde
|
||||
|
||||
# add initscript
|
||||
cat >> /etc/rc.d/init.d/fedora-live << EOF
|
||||
|
||||
if [ -e /usr/share/icons/hicolor/96x96/apps/fedora-logo-icon.png ] ; then
|
||||
# use image also for kdm
|
||||
mkdir -p /usr/share/apps/kdm/faces
|
||||
cp /usr/share/icons/hicolor/96x96/apps/fedora-logo-icon.png /usr/share/apps/kdm/faces/fedora.face.icon
|
||||
fi
|
||||
|
||||
# make fedora user use KDE
|
||||
echo "startkde" > /home/fedora/.xsession
|
||||
chmod a+x /home/fedora/.xsession
|
||||
chown fedora:fedora /home/fedora/.xsession
|
||||
|
||||
# set up autologin for user fedora
|
||||
sed -i 's/#AutoLoginEnable=true/AutoLoginEnable=true/' /etc/kde/kdm/kdmrc
|
||||
sed -i 's/#AutoLoginUser=fred/AutoLoginUser=fedora/' /etc/kde/kdm/kdmrc
|
||||
|
||||
# set up user fedora as default user and preselected user
|
||||
sed -i 's/#PreselectUser=Default/PreselectUser=Default/' /etc/kde/kdm/kdmrc
|
||||
sed -i 's/#DefaultUser=johndoe/DefaultUser=fedora/' /etc/kde/kdm/kdmrc
|
||||
|
||||
# add liveinst.desktop to favorites menu
|
||||
mkdir -p /home/fedora/.kde/share/config/
|
||||
cat > /home/fedora/.kde/share/config/kickoffrc << MENU_EOF
|
||||
[Favorites]
|
||||
FavoriteURLs=/usr/share/applications/kde4/konqbrowser.desktop,/usr/share/applications/kde4/dolphin.desktop,/usr/share/applications/kde4/systemsettings.desktop,/usr/share/applications/liveinst.desktop
|
||||
MENU_EOF
|
||||
chown -R fedora:fedora /home/fedora/.kde/
|
||||
EOF
|
||||
|
||||
7
snippets/config-developer.ks
Normal file
7
snippets/config-developer.ks
Normal file
@@ -0,0 +1,7 @@
|
||||
# %post modifications to add link to demonstration videos to desktop
|
||||
|
||||
cat >> /etc/rc.d/init.d/fedora-live << EOF
|
||||
pushd /home/fedora/Desktop
|
||||
ln -s /usr/share/eclipse-demos-0.0.1 "Eclipse demonstration videos"
|
||||
popd
|
||||
EOF
|
||||
57
snippets/config-electronic-lab.ks
Normal file
57
snippets/config-electronic-lab.ks
Normal file
@@ -0,0 +1,57 @@
|
||||
# %post modifications specifically for Fedora Electronic Lab
|
||||
|
||||
# Fedora Electronic Lab: Kwin buttons
|
||||
cat > /usr/share/kde-settings/kde-profile/default/share/config/kwinrc <<EOF
|
||||
[Style]
|
||||
ButtonsOnLeft=MB
|
||||
ButtonsOnRight=FIAX
|
||||
CustomButtonPositions=true
|
||||
EOF
|
||||
|
||||
# kill klipper
|
||||
cat > /usr/share/kde-settings/kde-profile/default/share/config/klipperrc <<EOF
|
||||
[General]
|
||||
AutoStart=false
|
||||
EOF
|
||||
|
||||
# use the LCD_Style clock as alliance's windows demand a lot of space on kicker
|
||||
cat > /usr/share/kde-settings/kde-profile/default/share/config/clock_panelappletrc <<EOF
|
||||
[Digital]
|
||||
LCD_Style=false
|
||||
Show_Date=false
|
||||
Show_Seconds=true
|
||||
|
||||
[General]
|
||||
Type=Digital
|
||||
EOF
|
||||
|
||||
cat > /usr/share/kde-settings/kde-profile/default/share/config/kxkbrc <<EOF
|
||||
[Layout]
|
||||
DisplayNames=
|
||||
EnableXkbOptions=false
|
||||
IncludeGroups=
|
||||
LayoutList=us,de,fr,jp
|
||||
Model=pc104
|
||||
Options=
|
||||
ResetOldOptions=false
|
||||
ShowFlag=true
|
||||
ShowSingle=true
|
||||
StickySwitching=false
|
||||
StickySwitchingDepth=2
|
||||
SwitchMode=Global
|
||||
Use=true
|
||||
EOF
|
||||
|
||||
# Chitlesh doesn't like the KDE icon on the kicker, but fedora's
|
||||
# This is a feature for Fedora and not for KDE
|
||||
cp -fp /usr/share/icons/Bluecurve/16x16/apps/gnome-main-menu.png /usr/share/icons/crystalsvg/16x16/apps/kmenu.png
|
||||
cp -fp /usr/share/icons/Bluecurve/24x24/apps/gnome-main-menu.png /usr/share/icons/crystalsvg/22x22/apps/kmenu.png
|
||||
cp -fp /usr/share/icons/Bluecurve/32x32/apps/gnome-main-menu.png /usr/share/icons/crystalsvg/32x32/apps/kmenu.png
|
||||
cp -fp /usr/share/icons/Bluecurve/48x48/apps/gnome-main-menu.png /usr/share/icons/crystalsvg/48x48/apps/kmenu.png
|
||||
|
||||
/sbin/chkconfig anacron off
|
||||
/sbin/chkconfig sendmail off
|
||||
/sbin/chkconfig nfs off
|
||||
/sbin/chkconfig nfslock off
|
||||
/sbin/chkconfig rpcidmapd off
|
||||
/sbin/chkconfig rpcbind off
|
||||
19
snippets/config-kde-gnome-keyring.ks
Normal file
19
snippets/config-kde-gnome-keyring.ks
Normal file
@@ -0,0 +1,19 @@
|
||||
# %post modifications to set up gnome-keyring in KDE
|
||||
|
||||
mkdir -p /etc/skel/.kde/env /etc/skel/.kde/shutdown
|
||||
cat > /etc/skel/.kde/env/start-custom.sh << EOF
|
||||
#!/bin/sh
|
||||
eval \`gnome-keyring-daemon\`
|
||||
export GNOME_KEYRING_PID
|
||||
export GNOME_KEYRING_SOCKET
|
||||
EOF
|
||||
chmod 755 /etc/skel/.kde/env/start-custom.sh
|
||||
|
||||
cat > /etc/skel/.kde/shutdown/stop-custom.sh << EOF
|
||||
#/bin/sh
|
||||
if [-n "$GNOME_KEYRING_PID"]; then
|
||||
kill $GNOME_KEYRING_PID
|
||||
fi
|
||||
EOF
|
||||
|
||||
chmod 755 /etc/skel/.kde/shutdown/stop-custom.sh
|
||||
16
snippets/config-tracker.ks
Normal file
16
snippets/config-tracker.ks
Normal file
@@ -0,0 +1,16 @@
|
||||
# %post modifications to configure tracker search
|
||||
|
||||
mkdir -p /home/fedora/.config/tracker
|
||||
|
||||
cat > /home/fedora/.config/tracker/tracker.cfg <<EOF
|
||||
[Indexing]
|
||||
EnableIndexing=false
|
||||
Language=en
|
||||
EOF
|
||||
|
||||
mkdir -p /root/.config/tracker
|
||||
cat > /root/.config/tracker/tracker.cfg <<EOF
|
||||
[Indexing]
|
||||
EnableIndexing=false
|
||||
Language=en
|
||||
EOF
|
||||
164
snippets/eeepc900-modifications.ks
Normal file
164
snippets/eeepc900-modifications.ks
Normal file
@@ -0,0 +1,164 @@
|
||||
###### Eee PC 900 stuff ####################################################
|
||||
#
|
||||
###### Hotkeys #############################################################
|
||||
cat > /etc/acpi/actions/hotkeys.sh << EOHOTKEY
|
||||
#!/bin/bash
|
||||
|
||||
export DISPLAY=:0
|
||||
|
||||
case "$3" in
|
||||
|
||||
#Fn+F2
|
||||
00000010)
|
||||
# Wlan On
|
||||
/etc/acpi/actions/wlan.sh poweron
|
||||
;;
|
||||
00000011)
|
||||
# Wlan Off
|
||||
/etc/acpi/actions/wlan.sh poweroff
|
||||
;;
|
||||
|
||||
#Fn+F6
|
||||
00000012)
|
||||
# Webcam switch
|
||||
/etc/acpi/actions/camera.sh
|
||||
# TaskManager
|
||||
# /usr/bin/gnome-system-monitor
|
||||
;;
|
||||
|
||||
#Fn+F7
|
||||
00000013)
|
||||
# Volume mute
|
||||
/usr/bin/amixer set -D hw:0 Master toggle
|
||||
;;
|
||||
|
||||
#Fn+F8
|
||||
00000014)
|
||||
# Volume down
|
||||
/usr/bin/amixer set -D hw:0 Master 10%- unmute
|
||||
;;
|
||||
|
||||
#Fn+F9
|
||||
00000015)
|
||||
# Volume up
|
||||
/usr/bin/amixer set -D hw:0 Master 10%+ unmute
|
||||
;;
|
||||
|
||||
#Fn+F5
|
||||
00000030)
|
||||
|
||||
/usr/bin/xrandr --output VGA --mode 1024x768 \
|
||||
--output LVDS --off
|
||||
|
||||
if [[ "$?" != "0" ]]; then
|
||||
|
||||
/usr/bin/xrandr --output VGA --preferred \
|
||||
--output LVDS --off
|
||||
|
||||
fi
|
||||
;;
|
||||
|
||||
00000031)
|
||||
|
||||
/usr/bin/xrandr --output LVDS --mode 800x480 \
|
||||
--output VGA --mode 800x600
|
||||
|
||||
;;
|
||||
|
||||
00000032)
|
||||
|
||||
/usr/bin/xrandr --output VGA --off \
|
||||
--output LVDS --preferred
|
||||
|
||||
;;
|
||||
*)
|
||||
logger "ACPI hotkey $3 action is not defined"
|
||||
;;
|
||||
esac
|
||||
EOHOTKEY
|
||||
|
||||
###### WLAN #############################################################
|
||||
cat > /etc/acpi/actions/wlan.sh << EOF
|
||||
#!/bin/bash
|
||||
|
||||
PWR=$(cat /sys/devices/platform/eeepc/wlan)
|
||||
|
||||
UnloadModules() {
|
||||
rmmod ath_pci
|
||||
rmmod ath_rate_sample
|
||||
rmmod wlan_scan_sta
|
||||
rmmod wlan_tkip
|
||||
rmmod wlan_wep
|
||||
rmmod wlan
|
||||
}
|
||||
|
||||
LoadModules() {
|
||||
modprobe ath_pci
|
||||
}
|
||||
|
||||
case $1 in
|
||||
poweron)
|
||||
if [[ "$PWR" = "0" ]]; then
|
||||
modprobe pciehp pciehp_force=1
|
||||
|
||||
echo 1 > /sys/devices/platform/eeepc/wlan
|
||||
|
||||
rmmod pciehp
|
||||
|
||||
fi
|
||||
;;
|
||||
|
||||
poweroff)
|
||||
if [[ "$PWR" = "1" ]]; then
|
||||
|
||||
modprobe pciehp pciehp_force=1
|
||||
|
||||
ifconfig ath0 down
|
||||
|
||||
wlanconfig ath0 destroy
|
||||
|
||||
UnloadModules
|
||||
|
||||
echo 0 > /sys/devices/platform/eeepc/wlan
|
||||
|
||||
rmmod pciehp
|
||||
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
EOF
|
||||
|
||||
###### Webcam #############################################################
|
||||
cat > /etc/acpi/actions/camera.sh << EOF
|
||||
|
||||
#!/bin/bash
|
||||
|
||||
CAMERA=$(cat /sys/devices/platform/eeepc/camera)
|
||||
|
||||
if [[ "$CAMERA" = "0" ]]; then
|
||||
echo 1 > /sys/devices/platform/eeepc/camera
|
||||
else
|
||||
echo 0 > /sys/devices/platform/eeepc/camera
|
||||
fi
|
||||
EOF
|
||||
|
||||
chmod +x "/etc/acpi/actions/*"
|
||||
|
||||
###### Shutdown fix #########################################################
|
||||
echo "modprobe -r snd-hda-intel" >> /sbin/halt.local
|
||||
chmod 755 /sbin/halt.local
|
||||
|
||||
###### Gnome display stuff ##################################################
|
||||
|
||||
gconftool-2 --set /apps/nautilus/preferences/desktop_font --type string "Sans 8"
|
||||
gconftool-2 --set /desktop/gnome/interface/document_font_name --type string "Sans 8"
|
||||
gconftool-2 --set /desktop/gnome/interface/font_name --type string "Sans 8"
|
||||
gconftool-2 --set /apps/metacity/general/titlebar_font --type string "Sans Bold 8"
|
||||
gconftool-2 --set /desktop/gnome/interface/monospace_font_name --type string "Monospace 8"
|
||||
gconftool-2 --set /apps/metacity/window_keybindings/toggle_fullscreen --type string "<Alt>F11"
|
||||
gconftool-2 --set /desktop/gnome/interface/toolbar_style --type string "icons"
|
||||
gconftool-2 --set /desktop/gnome/sound/default_mixer_tracks --type list --list-type string "[PCM]"
|
||||
gconftool-2 --set /apps/gnome-power-manager/notify/low_capacity --type bool 0
|
||||
gconftool-2 --set /apps/compiz/plugins/move/allscreens/options/constrain_y --type bool 0
|
||||
gconftool-2 --set /apps/panel/toplevels/top_panel_screen0/size --type integer 19
|
||||
gconftool-2 --set /apps/panel/toplevels/bottom_panel_screen0/size --type integer 19
|
||||
@@ -1,53 +0,0 @@
|
||||
# %post script to include initial metadata for PackageKit
|
||||
|
||||
%post --nochroot
|
||||
# Copy over files needed for networking inside the chroot
|
||||
for f in /etc/resolv.conf /etc/hosts ; do
|
||||
test -f $f && cp -a $f ${INSTALL_ROOT}${f}.kickstart
|
||||
done
|
||||
%end
|
||||
|
||||
%post
|
||||
|
||||
# Use host machine's resolv.conf and hosts files
|
||||
for f in /etc/resolv.conf /etc/hosts ; do
|
||||
test -f $f && mv $f $f.orig
|
||||
test -f $f.kickstart && mv -f $f.kickstart $f
|
||||
done
|
||||
|
||||
PK_PREFIX=`mktemp -d`
|
||||
mkdir -p $PK_PREFIX/etc/yum.repos.d
|
||||
if [ -f /etc/yum.repos.d/fedora.repo ] ; then
|
||||
cp /etc/yum.repos.d/fedora.repo $PK_PREFIX/etc/yum.repos.d/
|
||||
sed -i -e 's|^metalink=https://mirrors.fedoraproject.org/metalink?repo=fedora-$releasever&arch=$basearch|baseurl=http://kojipkgs.fedoraproject.org/mash/branched/$basearch/os/|' \
|
||||
$PK_PREFIX/etc/yum.repos.d/fedora.repo
|
||||
fi
|
||||
if [ -f /etc/yum.repos.d/fedora-updates.repo ] ; then
|
||||
cp /etc/yum.repos.d/fedora-updates.repo $PK_PREFIX/etc/yum.repos.d/
|
||||
sed -i -e 's|^metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-f$releasever&arch=$basearch|baseurl=http://kojipkgs.fedoraproject.org/mash/updates/f$releasever-updates/$basearch/|' \
|
||||
$PK_PREFIX/etc/yum.repos.d/fedora-updates.repo
|
||||
fi
|
||||
if [ -f /etc/yum.repos.d/fedora-updates-testing.repo ] ; then
|
||||
cp /etc/yum.repos.d/fedora-updates-testing.repo $PK_PREFIX/etc/yum.repos.d/
|
||||
sed -i -e 's|^metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-f$releasever&arch=$basearch|baseurl=http://kojipkgs.fedoraproject.org/mash/updates/f$releasever-updates-testing/$basearch/|' \
|
||||
$PK_PREFIX/etc/yum.repos.d/fedora-updates-testing.repo
|
||||
fi
|
||||
if [ -f /etc/yum.repos.d/fedora-rawhide.repo ] ; then
|
||||
cp /etc/yum.repos.d/fedora-rawhide.repo $PK_PREFIX/etc/yum.repos.d/
|
||||
sed -i -e 's|^metalink=https://mirrors.fedoraproject.org/metalink?repo=rawhide&arch=$basearch|baseurl=http://kojipkgs.fedoraproject.org/mash/rawhide/$basearch/os/|' \
|
||||
$PK_PREFIX/etc/yum.repos.d/fedora-rawhide.repo
|
||||
fi
|
||||
rpm --root=$PK_PREFIX --initdb
|
||||
DESTDIR=$PK_PREFIX /usr/libexec/packagekit-direct refresh
|
||||
if [ -d /var/cache/PackageKit ] ; then
|
||||
mv $PK_PREFIX/var/cache/PackageKit/* /var/cache/PackageKit/
|
||||
fi
|
||||
rm -rf $PK_PREFIX
|
||||
|
||||
# Restore original resolv.conf and hosts files
|
||||
for f in /etc/resolv.conf /etc/hosts ; do
|
||||
rm -f $f
|
||||
test -f $f.orig && mv $f.orig $f
|
||||
done
|
||||
|
||||
%end
|
||||
25
snippets/repository-debuginfo.ks
Normal file
25
snippets/repository-debuginfo.ks
Normal file
@@ -0,0 +1,25 @@
|
||||
# %post modifications to enable debuginfo repository
|
||||
|
||||
awk '
|
||||
BEGIN {
|
||||
debuginfo = 0
|
||||
}
|
||||
/^\[.*\]/ {
|
||||
if (/debuginfo/) {
|
||||
debuginfo = 1
|
||||
} else {
|
||||
debuginfo = 0
|
||||
}
|
||||
print
|
||||
next
|
||||
}
|
||||
/enabled=0/ && debuginfo {
|
||||
print "enabled=1"
|
||||
next
|
||||
}
|
||||
{
|
||||
print
|
||||
next
|
||||
}' < /etc/yum.repos.d/fedora.repo > /etc/yum.repos.d/fedora.repo.tmp
|
||||
mv /etc/yum.repos.d/fedora.repo{.tmp,}
|
||||
|
||||
5
snippets/screensaver-gnome.ks
Normal file
5
snippets/screensaver-gnome.ks
Normal file
@@ -0,0 +1,5 @@
|
||||
# %post modifications to disable GNOME screensaver locking
|
||||
|
||||
cat >> /etc/rc.d/init.d/fedora-live << EOF
|
||||
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /apps/gnome-screensaver/lock_enabled false >/dev/null
|
||||
EOF
|
||||
3
snippets/screensaver-kde.ks
Normal file
3
snippets/screensaver-kde.ks
Normal file
@@ -0,0 +1,3 @@
|
||||
# %post modifications to disable KDE screensaver
|
||||
|
||||
sed -i 's/Enabled=true/Enabled=false/' /usr/share/kde-settings/kde-profile/default/share/config/kdesktoprc
|
||||
6
snippets/sysconfig-kde.ks
Normal file
6
snippets/sysconfig-kde.ks
Normal file
@@ -0,0 +1,6 @@
|
||||
# %post modifications to create /etc/sysconfig/desktop for KDE
|
||||
|
||||
cat > /etc/sysconfig/desktop <<EOF
|
||||
DESKTOP="KDE"
|
||||
DISPLAYMANAGER="KDE"
|
||||
EOF
|
||||
5
snippets/sysconfig-xfce.ks
Normal file
5
snippets/sysconfig-xfce.ks
Normal file
@@ -0,0 +1,5 @@
|
||||
# %post modifications to create /etc/sysconfig/desktop for XFCE
|
||||
|
||||
cat > /etc/sysconfig/desktop <<EOF
|
||||
PREFERRED=/usr/bin/startxfce4
|
||||
EOF
|
||||
Reference in New Issue
Block a user