mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-12-11 01:20:30 +08:00
Compare commits
61 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dfde534098 | ||
|
|
e1d8fc75bc | ||
|
|
6641de0a8b | ||
|
|
2878aa0060 | ||
|
|
2d56c91c07 | ||
|
|
d0b28ea2c3 | ||
|
|
95c0f2af6d | ||
|
|
f46ca3331f | ||
|
|
fdc93b3659 | ||
|
|
0bc399cf58 | ||
|
|
b53dfb5ba8 | ||
|
|
469ad561b9 | ||
|
|
f5eb0bee5f | ||
|
|
21a379ef79 | ||
|
|
e07cfce2f1 | ||
|
|
7e607ce0f3 | ||
|
|
f206dc6253 | ||
|
|
2585bce264 | ||
|
|
72774fc6b0 | ||
|
|
aa81c7cd0e | ||
|
|
5e9291ec1c | ||
|
|
a44b1dc6d3 | ||
|
|
5fe8408f5c | ||
|
|
6751aa3849 | ||
|
|
6d5b58634a | ||
|
|
01e4b012f3 | ||
|
|
9b16a9462d | ||
|
|
2a96952c22 | ||
|
|
84557491c8 | ||
|
|
1274fda3e7 | ||
|
|
7f133a05ce | ||
|
|
330c56ad28 | ||
|
|
7764a782a5 | ||
|
|
0f26c21c8d | ||
|
|
4d05ed6718 | ||
|
|
93793acd48 | ||
|
|
27ed383622 | ||
|
|
d86a3b5d9d | ||
|
|
f85ce784f9 | ||
|
|
73bf1e7ef1 | ||
|
|
1fac51f92e | ||
|
|
60e8bf04f0 | ||
|
|
2ee3dfa33d | ||
|
|
6cbd02ead6 | ||
|
|
9e4639836a | ||
|
|
0790ffabbb | ||
|
|
be135f9a7d | ||
|
|
d90ed68560 | ||
|
|
c51b27294e | ||
|
|
fb40fd6d03 | ||
|
|
bc1f075e41 | ||
|
|
932524c849 | ||
|
|
1568248565 | ||
|
|
8453b8352b | ||
|
|
5a7026e059 | ||
|
|
f0a3e2cef0 | ||
|
|
0c88d07916 | ||
|
|
86e5787b35 | ||
|
|
75b7f9fd28 | ||
|
|
2e6490e3f4 | ||
|
|
0aafbdc2a2 |
1
.sparkleshare
Normal file
1
.sparkleshare
Normal file
@@ -0,0 +1 @@
|
|||||||
|
d6afc629dc9311ebd79b4cedb2775531065ecb05
|
||||||
2
Makefile
2
Makefile
@@ -18,8 +18,6 @@ install:
|
|||||||
install -m 644 custom/* $(DATADIR)/$(name)/custom
|
install -m 644 custom/* $(DATADIR)/$(name)/custom
|
||||||
mkdir -p -m 755 $(DATADIR)/$(name)/l10n
|
mkdir -p -m 755 $(DATADIR)/$(name)/l10n
|
||||||
install -m 644 l10n/* $(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:
|
clean:
|
||||||
rm -f $(name)-*.tar.gz
|
rm -f $(name)-*.tar.gz
|
||||||
|
|||||||
23
README
Normal file
23
README
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
The master branch is where development takes place:
|
||||||
|
- it may contain kickstart files that are broken, or
|
||||||
|
- spin concepts that are in the process of being
|
||||||
|
approved by the Board (trademark approval), or
|
||||||
|
- spin concepts that are in the process of being
|
||||||
|
approved by the Spins SIG
|
||||||
|
|
||||||
|
The release specific branches contain spin concepts that:
|
||||||
|
- are approved (both by Board and Spin SIG)
|
||||||
|
- maintained for the remainder of the release cycle
|
||||||
|
|
||||||
|
git clone ssh://git.fedorahosted.org/git/spin-kickstarts.git spin-kickstarts
|
||||||
|
cd spin-kickstarts
|
||||||
|
# If you need a specific branch other than master:
|
||||||
|
git checkout BRANCHNAME
|
||||||
|
# No tag has been added yet tag HEAD with
|
||||||
|
git tag VERSION
|
||||||
|
git push --tags
|
||||||
|
make
|
||||||
|
# Publish the released tar ball
|
||||||
|
make publish
|
||||||
|
# Clean up the generated files:
|
||||||
|
make clean
|
||||||
31
README.md
31
README.md
@@ -1,31 +0,0 @@
|
|||||||
# fedora-kickstarts #
|
|
||||||
|
|
||||||
This project is used to manage the Fedora kickstart files used in composing Fedora release images.
|
|
||||||
|
|
||||||
The master branch is used by rawhide and each release branch is used by that release.
|
|
||||||
|
|
||||||
All changes should be made via the PR workflow.
|
|
||||||
|
|
||||||
This project is packaged in Fedora as the spin-kickstarts package allowing users to see
|
|
||||||
and modify the kickstart files for their local needs.
|
|
||||||
|
|
||||||
## To make a release ##
|
|
||||||
|
|
||||||
* git clone ssh://git@pagure.io/fedora-kickstarts.git fedora-kickstarts
|
|
||||||
* cd fedora-kickstarts
|
|
||||||
* # If you need a specific branch other than master:
|
|
||||||
* git checkout BRANCHNAME
|
|
||||||
* # No tag has been added yet tag HEAD with
|
|
||||||
* git tag VERSION
|
|
||||||
* git push --tags
|
|
||||||
* make
|
|
||||||
* # Publish the released tar ball
|
|
||||||
* make publish
|
|
||||||
* # Clean up the generated files:
|
|
||||||
* make clean
|
|
||||||
|
|
||||||
# bug reports #
|
|
||||||
|
|
||||||
Bugs should be reported to the spin-kickstarts bugzilla component:
|
|
||||||
|
|
||||||
https://bugzilla.redhat.com/enter_bug.cgi?product=Fedora&component=spin-kickstarts
|
|
||||||
@@ -4,5 +4,5 @@
|
|||||||
<%page args="ostree_osname, ostree_ref"/>
|
<%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 "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 "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"
|
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 'http://dl.fedoraproject.org/pub/fedora/linux/atomic/23/'\n%end\n"
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ selinux --permissive
|
|||||||
firewall --disabled
|
firewall --disabled
|
||||||
bootloader --timeout=1 --append="acpi=force"
|
bootloader --timeout=1 --append="acpi=force"
|
||||||
network --bootproto=dhcp --device=eth0 --onboot=on
|
network --bootproto=dhcp --device=eth0 --onboot=on
|
||||||
|
services --enabled=network
|
||||||
|
|
||||||
# Uncomment the next line
|
# Uncomment the next line
|
||||||
# to make the root password be thincrust
|
# to make the root password be thincrust
|
||||||
@@ -94,9 +95,5 @@ generic-logos
|
|||||||
#
|
#
|
||||||
%post
|
%post
|
||||||
|
|
||||||
# Enable network service here, as doing it in the services line
|
|
||||||
# fails due to RHBZ #1369794
|
|
||||||
/sbin/chkconfig network on
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -7,15 +7,14 @@ firewall --enabled --service=mdns,ssh
|
|||||||
# configure extlinux bootloader
|
# configure extlinux bootloader
|
||||||
bootloader extlinux
|
bootloader extlinux
|
||||||
|
|
||||||
part /boot/fw --size=30 --fstype vfat --asprimary
|
part /boot --size=512 --fstype ext4
|
||||||
part /boot --size=512 --fstype ext4 --asprimary
|
part swap --size=512 --fstype swap
|
||||||
part swap --size=512 --fstype swap --asprimary
|
part / --size=3000 --fstype ext4
|
||||||
part / --size=2800 --fstype ext4 --asprimary
|
|
||||||
|
|
||||||
# make sure that initial-setup runs and lets us do all the configuration bits
|
# make sure that initial-setup runs and lets us do all the configuration bits
|
||||||
firstboot --reconfig
|
firstboot --reconfig
|
||||||
|
|
||||||
services --enabled=sshd,NetworkManager,avahi-daemon,rsyslog,chronyd,initial-setup
|
services --enabled=ssh,NetworkManager,avahi-daemon,rsyslog,chronyd --disabled=network
|
||||||
|
|
||||||
%include fedora-repo.ks
|
%include fedora-repo.ks
|
||||||
|
|
||||||
@@ -23,48 +22,30 @@ services --enabled=sshd,NetworkManager,avahi-daemon,rsyslog,chronyd,initial-setu
|
|||||||
@core
|
@core
|
||||||
@standard
|
@standard
|
||||||
@hardware-support
|
@hardware-support
|
||||||
|
@dial-up
|
||||||
|
|
||||||
kernel
|
kernel
|
||||||
# remove this in %post
|
|
||||||
dracut-config-generic
|
dracut-config-generic
|
||||||
-dracut-config-rescue
|
|
||||||
# install tools needed to manage and boot arm systems
|
|
||||||
@arm-tools
|
|
||||||
-uboot-images-armv8
|
|
||||||
rng-tools
|
|
||||||
chrony
|
chrony
|
||||||
|
arm-boot-config
|
||||||
extlinux-bootloader
|
extlinux-bootloader
|
||||||
bcm283x-firmware
|
|
||||||
initial-setup
|
initial-setup
|
||||||
initial-setup-gui
|
initial-setup-gui
|
||||||
-iwl*
|
|
||||||
-ipw*
|
|
||||||
-trousers-lib
|
|
||||||
-usb_modeswitch
|
|
||||||
-iproute-tc
|
|
||||||
#lets resize / on first boot
|
#lets resize / on first boot
|
||||||
# dracut-modules-growroot
|
# dracut-modules-growroot
|
||||||
|
|
||||||
# make sure all the locales are available for inital0-setup and anaconda to work
|
# remove this in %post
|
||||||
glibc-all-langpacks
|
dracut-config-generic
|
||||||
|
|
||||||
|
# install uboot images
|
||||||
|
uboot-images-armv7
|
||||||
|
|
||||||
# workaround for consequence of RHBZ #1324623: without this, with
|
|
||||||
# yum-based creation tools, compose fails due to conflict between
|
|
||||||
# libcrypt and libcrypt-nss. dnf does not seem to have the same
|
|
||||||
# issue, so this may be dropped when appliance-creator is ported
|
|
||||||
# to dnf.
|
|
||||||
libcrypt-nss
|
|
||||||
-libcrypt
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
|
||||||
# Setup Raspberry Pi firmware
|
|
||||||
cp -Pr /usr/share/bcm283x-firmware/* /boot/fw/
|
|
||||||
cp -P /usr/share/uboot/rpi_2/u-boot.bin /boot/fw/rpi2-u-boot.bin
|
|
||||||
cp -P /usr/share/uboot/rpi_3_32b/u-boot.bin /boot/fw/rpi3-u-boot.bin
|
|
||||||
sed -i '/vfat/ d' /etc/fstab
|
|
||||||
|
|
||||||
# work around for poor key import UI in PackageKit
|
# work around for poor key import UI in PackageKit
|
||||||
rm -f /var/lib/rpm/__db*
|
rm -f /var/lib/rpm/__db*
|
||||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
||||||
@@ -75,23 +56,14 @@ 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*
|
||||||
|
|
||||||
# remove random seed, the newly installed instance should make it's own
|
|
||||||
rm -f /var/lib/systemd/random-seed
|
|
||||||
|
|
||||||
# Because memory is scarce resource in most arm systems we are differing from the Fedora
|
# Because memory is scarce resource in most arm systems we are differing from the Fedora
|
||||||
# default of having /tmp on tmpfs.
|
# default of having /tmp on tmpfs.
|
||||||
echo "Disabling tmpfs for /tmp."
|
echo "Disabling tmpfs for /tmp."
|
||||||
systemctl mask tmp.mount
|
systemctl mask tmp.mount
|
||||||
|
|
||||||
dnf -y remove dracut-config-generic
|
/usr/sbin/a-b-c
|
||||||
|
|
||||||
# Disable network service here, as doing it in the services line
|
yum -y remove dracut-config-generic
|
||||||
# fails due to RHBZ #1369794
|
|
||||||
/sbin/chkconfig network off
|
|
||||||
|
|
||||||
# Remove machine-id on pre generated images
|
|
||||||
rm -f /etc/machine-id
|
|
||||||
touch /etc/machine-id
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
%include fedora-arm-xbase.ks
|
%include fedora-arm-xbase.ks
|
||||||
%include fedora-kde-common.ks
|
%include fedora-kde-packages.ks
|
||||||
|
|
||||||
part / --size=5690 --fstype ext4
|
part / --size=5000 --fstype ext4
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
echo -n "Enabling initial-setup gui mode on startup"
|
||||||
|
ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
|
||||||
|
echo .
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
%include fedora-arm-xbase.ks
|
%include fedora-arm-xbase.ks
|
||||||
%include fedora-lxde-common.ks
|
%include fedora-lxde-packages.ks
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
echo -n "Enabling initial-setup gui mode on startup"
|
||||||
|
ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
|
||||||
|
echo .
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
%include fedora-arm-base.ks
|
|
||||||
%include fedora-arm-xbase.ks
|
|
||||||
%include fedora-lxqt-common.ks
|
|
||||||
|
|
||||||
part / --size=3800 --fstype ext4 --asprimary
|
|
||||||
|
|
||||||
%packages
|
|
||||||
# trojita not available on non-x86 platforms
|
|
||||||
-trojita
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -1,9 +1,12 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
%include fedora-arm-xbase.ks
|
%include fedora-arm-xbase.ks
|
||||||
%include fedora-mate-common.ks
|
%include fedora-mate-packages.ks
|
||||||
|
|
||||||
part / --size=5500 --fstype ext4
|
part / --size=5000 --fstype ext4
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
echo -n "Enabling initial-setup gui mode on startup"
|
||||||
|
ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
|
||||||
|
echo .
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1,10 +1,27 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
%include fedora-minimal-common.ks
|
|
||||||
|
|
||||||
part /boot --size=512 --fstype ext4
|
part /boot --size=300 --fstype ext4
|
||||||
part swap --size=256 --fstype swap
|
part swap --size=256 --fstype swap
|
||||||
part / --size=1250 --fstype ext4
|
part / --size=1200 --fstype ext4
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
-xkeyboard-config
|
-@standard
|
||||||
|
-@dial-up
|
||||||
|
-initial-setup-gui
|
||||||
|
-generic-release*
|
||||||
%end
|
%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
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
# Maintained by the Fedora Python SIG:
|
|
||||||
# http://fedoraproject.org/wiki/SIGs/Python
|
|
||||||
# mailto:python-devel@lists.fedoraproject.org
|
|
||||||
|
|
||||||
# The ARM Workstion based Python Classroom Lab
|
|
||||||
|
|
||||||
%include fedora-arm-workstation.ks
|
|
||||||
%include fedora-python-classroom-gnome-common.ks
|
|
||||||
@@ -1,9 +1,10 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
|
|
||||||
# server defaults to xfs for / so lets do so on arm also
|
# server defaults to xfs for / so lets do so on arm also
|
||||||
part / --size=2500 --fstype xfs
|
part / --size=3000 --fstype xfs
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
|
-@dial-up
|
||||||
# install the default groups for the server evironment since installing the environment is not working
|
# install the default groups for the server evironment since installing the environment is not working
|
||||||
@server-product
|
@server-product
|
||||||
@standard
|
@standard
|
||||||
@@ -22,5 +23,9 @@ rm -f /etc/systemd/system/default.target
|
|||||||
ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
|
ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
|
||||||
echo .
|
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
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
%include fedora-arm-xbase.ks
|
%include fedora-arm-xbase.ks
|
||||||
%include fedora-soas-common.ks
|
%include fedora-soas-packages.ks
|
||||||
|
|
||||||
part / --size=3300 --fstype ext4 --asprimary
|
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
echo -n "Enabling initial-setup gui mode on startup"
|
||||||
|
ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
|
||||||
|
echo .
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
%include fedora-arm-xbase.ks
|
%include fedora-arm-xbase.ks
|
||||||
%include fedora-workstation-common.ks
|
%include fedora-workstation-packages.ks
|
||||||
|
|
||||||
part / --size=5500 --fstype ext4
|
part / --size=5000 --fstype ext4
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
-initial-setup
|
-initial-setup
|
||||||
@@ -10,8 +10,3 @@ part / --size=5500 --fstype ext4
|
|||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%post
|
|
||||||
# Most of the ARM X accelerated drivers need some level of CMA allocation
|
|
||||||
sed -i 's/\(append .*\)/\1 cma=256MB/' /boot/extlinux/extlinux.conf
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|||||||
@@ -6,11 +6,3 @@
|
|||||||
@printing
|
@printing
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%post
|
|
||||||
# Most of the ARM X accelerated drivers need some level of CMA allocation
|
|
||||||
sed -i 's/\(append .*\)/\1 cma=192MB/' /boot/extlinux/extlinux.conf
|
|
||||||
|
|
||||||
# Explicitly set graphical.target as default as this is how initial-setup detects which version to run
|
|
||||||
ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
%include fedora-arm-xbase.ks
|
%include fedora-arm-xbase.ks
|
||||||
%include fedora-xfce-common.ks
|
%include fedora-xfce-packages.ks
|
||||||
|
|
||||||
part / --size=4000 --fstype ext4
|
part / --size=4000 --fstype ext4
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
echo -n "Enabling initial-setup gui mode on startup"
|
||||||
|
ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
|
||||||
|
echo .
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# fedora-cinnamon-common.ks
|
# fedora-cinnamon-packages.ks
|
||||||
#
|
#
|
||||||
# Description:
|
# Description:
|
||||||
# - Fedora package set for the Cinnamon Desktop Environment
|
# - Fedora package set for the Cinnamon Desktop Environment
|
||||||
@@ -16,12 +16,13 @@
|
|||||||
pidgin
|
pidgin
|
||||||
hexchat
|
hexchat
|
||||||
transmission
|
transmission
|
||||||
|
parole
|
||||||
|
|
||||||
# mp3 support
|
# unlock default keyring. FIXME: Should probably be done in comps
|
||||||
gstreamer1-plugins-ugly-free
|
gnome-keyring-pam
|
||||||
|
|
||||||
# extra backgrounds
|
# save some space
|
||||||
desktop-backgrounds-basic
|
-fedora-icon-theme
|
||||||
f26-backgrounds-extras-gnome
|
-PackageKit* # we switched to yumex, so we don't need this
|
||||||
|
|
||||||
%end
|
%end
|
||||||
@@ -14,10 +14,10 @@ network --bootproto=dhcp --device=link --activate
|
|||||||
part / --fstype="ext4" --size=6000
|
part / --fstype="ext4" --size=6000
|
||||||
part /boot --size=500 --fstype="ext4"
|
part /boot --size=500 --fstype="ext4"
|
||||||
shutdown
|
shutdown
|
||||||
services --disabled=docker-storage-setup
|
services --disabled=docker-storage-setup,network
|
||||||
services --enabled=NetworkManager,sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
|
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
|
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=http://kojipkgs.fedoraproject.org/mash/atomic/23/ --ref=fedora-atomic/f23/x86_64/docker-host
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
|
||||||
@@ -28,9 +28,4 @@ userdel -r none
|
|||||||
# We copy content of separate /boot partition to root part when building live squashfs image,
|
# 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
|
# and we don't want systemd to try to mount it when pxe booting
|
||||||
cat /dev/null > /etc/fstab
|
cat /dev/null > /etc/fstab
|
||||||
|
|
||||||
# Disable network service here, as doing it in the services line
|
|
||||||
# fails due to RHBZ #1369794
|
|
||||||
/sbin/chkconfig network off
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
# Like the Atomic Host cloud image, but tuned for vagrant: enable the
|
# Like the Atomic cloud image, but tuned for vagrant. Enable
|
||||||
# vagrant user, disable cloud-init.
|
# the vagrant user, disable cloud-init.
|
||||||
|
|
||||||
%include fedora-atomic.ks
|
%include fedora-cloud-atomic.ks
|
||||||
|
|
||||||
|
services --disabled=cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
|
|
||||||
user --name=vagrant --password=vagrant
|
user --name=vagrant --password=vagrant
|
||||||
rootpw vagrant
|
rootpw vagrant
|
||||||
@@ -12,19 +14,16 @@ rootpw vagrant
|
|||||||
# platforms (virtualbox and kvm)
|
# platforms (virtualbox and kvm)
|
||||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8 net.ifnames=0 biosdevname=0"
|
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8 net.ifnames=0 biosdevname=0"
|
||||||
|
|
||||||
|
|
||||||
%post --erroronfail
|
%post --erroronfail
|
||||||
|
|
||||||
# Work around cloud-init being both disabled and enabled; need
|
# Work around cloud-init being both disabled and enabled; need
|
||||||
# to refactor to a common base.
|
# to refactor to a common base.
|
||||||
systemctl mask cloud-init cloud-init-local cloud-config cloud-final
|
systemctl mask cloud-init cloud-init-local cloud-config cloud-final
|
||||||
|
|
||||||
# The inherited cloud %post locks the passwd, but we want it
|
|
||||||
# unlocked for vagrant, just like downstream.
|
|
||||||
passwd -u root
|
|
||||||
|
|
||||||
# Vagrant setup
|
# Vagrant setup
|
||||||
sed -i 's,Defaults\\s*requiretty,Defaults !requiretty,' /etc/sudoers
|
sed -i 's,Defaults\\s*requiretty,Defaults !requiretty,' /etc/sudoers
|
||||||
echo 'vagrant ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/vagrant-nopasswd
|
echo 'vagrant ALL=NOPASSWD: ALL' > /etc/sudoers.d/vagrant-nopasswd
|
||||||
sed -i 's/.*UseDNS.*/UseDNS no/' /etc/ssh/sshd_config
|
sed -i 's/.*UseDNS.*/UseDNS no/' /etc/ssh/sshd_config
|
||||||
mkdir -m 0700 -p ~vagrant/.ssh
|
mkdir -m 0700 -p ~vagrant/.ssh
|
||||||
cat > ~vagrant/.ssh/authorized_keys << EOKEYS
|
cat > ~vagrant/.ssh/authorized_keys << EOKEYS
|
||||||
@@ -6,7 +6,7 @@
|
|||||||
# dedicated for Docker containers, and uses docker-storage-setup to
|
# dedicated for Docker containers, and uses docker-storage-setup to
|
||||||
# dynamically resize storage on boot.
|
# dynamically resize storage on boot.
|
||||||
|
|
||||||
text # don't use cmdline -- https://github.com/rhinstaller/anaconda/issues/931
|
text
|
||||||
lang en_US.UTF-8
|
lang en_US.UTF-8
|
||||||
keyboard us
|
keyboard us
|
||||||
timezone --utc Etc/UTC
|
timezone --utc Etc/UTC
|
||||||
@@ -14,13 +14,15 @@ timezone --utc Etc/UTC
|
|||||||
auth --useshadow --passalgo=sha512
|
auth --useshadow --passalgo=sha512
|
||||||
selinux --enforcing
|
selinux --enforcing
|
||||||
rootpw --lock --iscrypted locked
|
rootpw --lock --iscrypted locked
|
||||||
|
user --name=none
|
||||||
|
|
||||||
firewall --disabled
|
firewall --disabled
|
||||||
|
|
||||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8 net.ifnames=0"
|
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8"
|
||||||
|
|
||||||
network --bootproto=dhcp --device=link --activate --onboot=on
|
network --bootproto=dhcp --device=link --activate --onboot=on
|
||||||
services --enabled=sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
|
services --disabled=network
|
||||||
|
services --enabled=sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
|
|
||||||
zerombr
|
zerombr
|
||||||
clearpart --all
|
clearpart --all
|
||||||
@@ -30,38 +32,25 @@ part pv.01 --grow
|
|||||||
volgroup atomicos pv.01
|
volgroup atomicos pv.01
|
||||||
logvol / --size=3000 --fstype="xfs" --name=root --vgname=atomicos
|
logvol / --size=3000 --fstype="xfs" --name=root --vgname=atomicos
|
||||||
|
|
||||||
# Equivalent of %include fedora-repo.ks; note this uses the Bodhi ref, which we reset below
|
# Equivalent of %include fedora-repo.ks
|
||||||
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=https://kojipkgs.fedoraproject.org/atomic/26/ --ref=fedora/26/x86_64/updates/atomic-host
|
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=http://kojipkgs.fedoraproject.org/mash/atomic/23/ --ref=fedora-atomic/f23/x86_64/docker-host
|
||||||
|
|
||||||
reboot
|
reboot
|
||||||
|
|
||||||
%post --erroronfail
|
%post --erroronfail
|
||||||
# Set the origin to the "main ref", distinct from /updates/ which is where bodhi writes.
|
# See https://github.com/projectatomic/rpm-ostree/issues/42
|
||||||
# We want consumers of this image to track the two week releases.
|
|
||||||
ostree admin set-origin --index 0 fedora-atomic https://kojipkgs.fedoraproject.org/atomic/26/ fedora/26/x86_64/atomic-host
|
|
||||||
|
|
||||||
# Make sure the ref we're supposedly sitting on (according
|
|
||||||
# to the updated origin) exists.
|
|
||||||
ostree refs fedora-atomic:fedora/26/x86_64/updates/atomic-host --create fedora-atomic:fedora/26/x86_64/atomic-host
|
|
||||||
|
|
||||||
# Remove the old ref so that the commit eventually gets
|
|
||||||
# cleaned up.
|
|
||||||
ostree refs fedora-atomic:fedora/26/x86_64/updates/atomic-host --delete
|
|
||||||
|
|
||||||
# delete/add the remote with new options to enable gpg verification
|
|
||||||
ostree remote delete fedora-atomic
|
ostree remote delete fedora-atomic
|
||||||
ostree remote add --set=gpg-verify=true --set=gpgkeypath=/etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-26-primary fedora-atomic 'https://kojipkgs.fedoraproject.org/atomic/26/'
|
ostree remote add --set=gpg-verify=false fedora-atomic 'https://dl.fedoraproject.org/pub/fedora/linux/atomic/23/'
|
||||||
|
|
||||||
# older versions of livecd-tools do not follow "rootpw --lock" line above
|
# older versions of livecd-tools do not follow "rootpw --lock" line above
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=964299
|
# https://bugzilla.redhat.com/show_bug.cgi?id=964299
|
||||||
passwd -l root
|
passwd -l root
|
||||||
|
# remove the user anaconda forces us to make
|
||||||
# Work around https://bugzilla.redhat.com/show_bug.cgi?id=1193590
|
userdel -r none
|
||||||
cp /etc/skel/.bash* /var/roothome
|
|
||||||
|
|
||||||
# Configure docker-storage-setup to resize the partition table on boot
|
# Configure docker-storage-setup to resize the partition table on boot
|
||||||
# https://github.com/projectatomic/docker-storage-setup/pull/25
|
# https://github.com/projectatomic/docker-storage-setup/pull/25
|
||||||
echo 'GROWPART=true' >> /etc/sysconfig/docker-storage-setup
|
echo 'GROWPART=true' > /etc/sysconfig/docker-storage-setup
|
||||||
|
|
||||||
echo -n "Getty fixes"
|
echo -n "Getty fixes"
|
||||||
# although we want console output going to the serial console, we don't
|
# although we want console output going to the serial console, we don't
|
||||||
@@ -118,7 +107,7 @@ echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
|
|||||||
#EOF
|
#EOF
|
||||||
|
|
||||||
echo "Removing random-seed so it's not the same in every image."
|
echo "Removing random-seed so it's not the same in every image."
|
||||||
rm -f /var/lib/systemd/random-seed
|
rm -f /var/lib/random-seed
|
||||||
|
|
||||||
echo "Packages within this cloud image:"
|
echo "Packages within this cloud image:"
|
||||||
echo "-----------------------------------------------------------------------"
|
echo "-----------------------------------------------------------------------"
|
||||||
@@ -133,20 +122,8 @@ dd bs=1M if=/dev/zero of=/var/tmp/zeros || :
|
|||||||
rm -f /var/tmp/zeros
|
rm -f /var/tmp/zeros
|
||||||
echo "(Don't worry -- that out-of-space error was expected.)"
|
echo "(Don't worry -- that out-of-space error was expected.)"
|
||||||
|
|
||||||
# For trac ticket https://pagure.io/atomic-wg/issue/128
|
|
||||||
rm -f /etc/sysconfig/network-scripts/ifcfg-ens3
|
|
||||||
|
|
||||||
echo "Adding Developer Mode GRUB2 menu item."
|
echo "Adding Developer Mode GRUB2 menu item."
|
||||||
/usr/libexec/atomic-devmode/bootentry add
|
/usr/libexec/atomic-devmode/bootentry add
|
||||||
|
|
||||||
# Disable network service here, as doing it in the services line
|
|
||||||
# fails due to RHBZ #1369794
|
|
||||||
/sbin/chkconfig network off
|
|
||||||
|
|
||||||
# Anaconda is writing an /etc/resolv.conf from the install environment.
|
|
||||||
# The system should start out with an empty file, otherwise cloud-init
|
|
||||||
# will try to use this information and may error:
|
|
||||||
# https://bugs.launchpad.net/cloud-init/+bug/1670052
|
|
||||||
truncate -s 0 /etc/resolv.conf
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
@@ -42,7 +42,7 @@ systemctl mask cloud-init cloud-init-local cloud-config cloud-final
|
|||||||
|
|
||||||
# Vagrant setup
|
# Vagrant setup
|
||||||
sed -i 's,Defaults\\s*requiretty,Defaults !requiretty,' /etc/sudoers
|
sed -i 's,Defaults\\s*requiretty,Defaults !requiretty,' /etc/sudoers
|
||||||
echo 'vagrant ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/vagrant-nopasswd
|
echo 'vagrant ALL=NOPASSWD: ALL' > /etc/sudoers.d/vagrant-nopasswd
|
||||||
sed -i 's/.*UseDNS.*/UseDNS no/' /etc/ssh/sshd_config
|
sed -i 's/.*UseDNS.*/UseDNS no/' /etc/ssh/sshd_config
|
||||||
mkdir -m 0700 -p ~vagrant/.ssh
|
mkdir -m 0700 -p ~vagrant/.ssh
|
||||||
cat > ~vagrant/.ssh/authorized_keys << EOKEYS
|
cat > ~vagrant/.ssh/authorized_keys << EOKEYS
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
# This is a basic Fedora cloud spin designed to work in OpenStack and other
|
# This is a basic Fedora 21 spin designed to work in OpenStack and other
|
||||||
# private cloud environments. It's configured with cloud-init so it will
|
# private cloud environments. It's configured with cloud-init so it will
|
||||||
# take advantage of ec2-compatible metadata services for provisioning ssh
|
# take advantage of ec2-compatible metadata services for provisioning ssh
|
||||||
# keys. Cloud-init creates a user account named "fedora" with passwordless
|
# keys. Cloud-init creates a user account named "fedora" with passwordless
|
||||||
# sudo access. The root password is empty and locked by default.
|
# sudo access. The root password is empty and locked by default.
|
||||||
#
|
#
|
||||||
# Note that unlike the standard Fedora install, this image has /tmp on disk
|
# Note that unlike the standard F20 install, this image has /tmp on disk
|
||||||
# rather than in tmpfs, since memory is usually at a premium.
|
# rather than in tmpfs, since memory is usually at a premium.
|
||||||
#
|
#
|
||||||
# This kickstart file is designed to be used with ImageFactory (in Koji).
|
# This kickstart file is designed to be used with ImageFactory (in Koji).
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
# imagefactory --debug base_image --file-parameter install_script ${tempfile} fedora-atomic-rawhide.tdl
|
# imagefactory --debug base_image --file-parameter install_script ${tempfile} fedora-atomic-rawhide.tdl
|
||||||
#
|
#
|
||||||
|
|
||||||
text # don't use cmdline -- https://github.com/rhinstaller/anaconda/issues/931
|
cmdline
|
||||||
lang en_US.UTF-8
|
lang en_US.UTF-8
|
||||||
keyboard us
|
keyboard us
|
||||||
timezone --utc Etc/UTC
|
timezone --utc Etc/UTC
|
||||||
@@ -32,17 +32,18 @@ timezone --utc Etc/UTC
|
|||||||
auth --useshadow --passalgo=sha512
|
auth --useshadow --passalgo=sha512
|
||||||
selinux --enforcing
|
selinux --enforcing
|
||||||
rootpw --lock --iscrypted locked
|
rootpw --lock --iscrypted locked
|
||||||
|
user --name=none
|
||||||
|
|
||||||
firewall --disabled
|
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=link --activate --onboot=on
|
network --bootproto=dhcp --device=link --activate --onboot=on
|
||||||
services --enabled=sshd,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
|
||||||
clearpart --all
|
clearpart --all
|
||||||
autopart --noboot --nohome --noswap --nolvm
|
part / --size 3000 --fstype ext4 --grow
|
||||||
|
|
||||||
%include fedora-repo.ks
|
%include fedora-repo.ks
|
||||||
|
|
||||||
@@ -60,11 +61,6 @@ reboot
|
|||||||
|
|
||||||
kernel-core
|
kernel-core
|
||||||
@^cloud-server-environment
|
@^cloud-server-environment
|
||||||
# Need to pull in the udev subpackage
|
|
||||||
systemd-udev
|
|
||||||
|
|
||||||
# after move away from grub2 - let's add 'which' back
|
|
||||||
which
|
|
||||||
|
|
||||||
# rescue mode generally isn't useful in the cloud context
|
# rescue mode generally isn't useful in the cloud context
|
||||||
-dracut-config-rescue
|
-dracut-config-rescue
|
||||||
@@ -81,9 +77,6 @@ which
|
|||||||
#-kbd
|
#-kbd
|
||||||
-uboot-tools
|
-uboot-tools
|
||||||
-kernel
|
-kernel
|
||||||
# No need for plymouth. Also means anaconda won't put rhgb/quiet
|
|
||||||
# on kernel command line
|
|
||||||
-plymouth
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
@@ -117,6 +110,9 @@ ln -sf /boot/grub/grub.conf /etc/grub.conf
|
|||||||
# older versions of livecd-tools do not follow "rootpw --lock" line above
|
# older versions of livecd-tools do not follow "rootpw --lock" line above
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=964299
|
# https://bugzilla.redhat.com/show_bug.cgi?id=964299
|
||||||
passwd -l root
|
passwd -l root
|
||||||
|
# remove the user anaconda forces us to make
|
||||||
|
userdel -r none
|
||||||
|
|
||||||
|
|
||||||
# setup systemd to boot to the right runlevel
|
# setup systemd to boot to the right runlevel
|
||||||
echo -n "Setting default runlevel to multiuser text mode"
|
echo -n "Setting default runlevel to multiuser text mode"
|
||||||
@@ -152,6 +148,9 @@ localedef --list-archive | grep -v ^en_US | xargs localedef --delete-from-archiv
|
|||||||
mv -f /usr/lib/locale/locale-archive /usr/lib/locale/locale-archive.tmpl
|
mv -f /usr/lib/locale/locale-archive /usr/lib/locale/locale-archive.tmpl
|
||||||
build-locale-archive
|
build-locale-archive
|
||||||
echo '%_install_langs C:en:en_US:en_US.UTF-8' >> /etc/rpm/macros.image-language-conf
|
echo '%_install_langs C:en:en_US:en_US.UTF-8' >> /etc/rpm/macros.image-language-conf
|
||||||
|
awk '(NF==0&&!done){print "override_install_langs='$LANG'";done=1}{print}' \
|
||||||
|
< /etc/yum.conf > /etc/yum.conf.new
|
||||||
|
mv /etc/yum.conf.new /etc/yum.conf
|
||||||
|
|
||||||
|
|
||||||
echo -n "Getty fixes"
|
echo -n "Getty fixes"
|
||||||
@@ -211,7 +210,7 @@ echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
|
|||||||
#EOF
|
#EOF
|
||||||
|
|
||||||
echo "Removing random-seed so it's not the same in every image."
|
echo "Removing random-seed so it's not the same in every image."
|
||||||
rm -f /var/lib/systemd/random-seed
|
rm -f /var/lib/random-seed
|
||||||
|
|
||||||
echo "Cleaning old dnf repodata."
|
echo "Cleaning old dnf repodata."
|
||||||
# FIXME: clear history?
|
# FIXME: clear history?
|
||||||
@@ -231,13 +230,13 @@ echo "-----------------------------------------------------------------------"
|
|||||||
# Note that running rpm recreates the rpm db files which aren't needed/wanted
|
# Note that running rpm recreates the rpm db files which aren't needed/wanted
|
||||||
rm -f /var/lib/rpm/__db*
|
rm -f /var/lib/rpm/__db*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# FIXME: is this still needed?
|
# FIXME: is this still needed?
|
||||||
echo "Fixing SELinux contexts."
|
echo "Fixing SELinux contexts."
|
||||||
touch /var/log/cron
|
touch /var/log/cron
|
||||||
touch /var/log/boot.log
|
touch /var/log/boot.log
|
||||||
# ignore return code because UEFI systems with vfat filesystems
|
/usr/sbin/fixfiles -R -a restore
|
||||||
# that don't support selinux will give us errors
|
|
||||||
/usr/sbin/fixfiles -R -a restore || true
|
|
||||||
|
|
||||||
echo "Zeroing out empty space."
|
echo "Zeroing out empty space."
|
||||||
# This forces the filesystem to reclaim space from deleted files
|
# This forces the filesystem to reclaim space from deleted files
|
||||||
@@ -248,19 +247,5 @@ echo "(Don't worry -- that out-of-space error was expected.)"
|
|||||||
# For trac ticket https://fedorahosted.org/cloud/ticket/128
|
# For trac ticket https://fedorahosted.org/cloud/ticket/128
|
||||||
rm -f /etc/sysconfig/network-scripts/ifcfg-ens3
|
rm -f /etc/sysconfig/network-scripts/ifcfg-ens3
|
||||||
|
|
||||||
# Enable network service here, as doing it in the services line
|
|
||||||
# fails due to RHBZ #1369794
|
|
||||||
/sbin/chkconfig network on
|
|
||||||
|
|
||||||
# Remove machine-id on pre generated images
|
|
||||||
rm -f /etc/machine-id
|
|
||||||
touch /etc/machine-id
|
|
||||||
|
|
||||||
# Anaconda is writing an /etc/resolv.conf from the install environment.
|
|
||||||
# The system should start out with an empty file, otherwise cloud-init
|
|
||||||
# will try to use this information and may error:
|
|
||||||
# https://bugs.launchpad.net/cloud-init/+bug/1670052
|
|
||||||
truncate -s 0 /etc/resolv.conf
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -23,10 +23,10 @@ user --name=none
|
|||||||
|
|
||||||
firewall --disabled
|
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" --extlinux
|
||||||
|
|
||||||
network --bootproto=dhcp --device=eth0 --activate --onboot=on
|
network --bootproto=dhcp --device=eth0 --activate --onboot=on
|
||||||
services --enabled=sshd,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
|
||||||
clearpart --all
|
clearpart --all
|
||||||
@@ -97,6 +97,10 @@ passwd -l root
|
|||||||
# remove the user anaconda forces us to make
|
# remove the user anaconda forces us to make
|
||||||
userdel -r none
|
userdel -r none
|
||||||
|
|
||||||
|
# Kickstart specifies timeout in seconds; syslinux uses 10ths.
|
||||||
|
# 0 means wait forever, so instead we'll go with 1.
|
||||||
|
sed -i 's/^timeout 10/timeout 1/' /boot/extlinux/extlinux.conf
|
||||||
|
|
||||||
# setup systemd to boot to the right runlevel
|
# setup systemd to boot to the right runlevel
|
||||||
echo -n "Setting default runlevel to multiuser text mode"
|
echo -n "Setting default runlevel to multiuser text mode"
|
||||||
rm -f /etc/systemd/system/default.target
|
rm -f /etc/systemd/system/default.target
|
||||||
@@ -174,7 +178,7 @@ echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
|
|||||||
#EOF
|
#EOF
|
||||||
|
|
||||||
echo "Removing random-seed so it's not the same in every image."
|
echo "Removing random-seed so it's not the same in every image."
|
||||||
rm -f /var/lib/systemd/random-seed
|
rm -f /var/lib/random-seed
|
||||||
|
|
||||||
echo "Cleaning old yum repodata."
|
echo "Cleaning old yum repodata."
|
||||||
yum history new
|
yum history new
|
||||||
@@ -205,7 +209,9 @@ echo "Fixing SELinux contexts."
|
|||||||
touch /var/log/cron
|
touch /var/log/cron
|
||||||
touch /var/log/boot.log
|
touch /var/log/boot.log
|
||||||
mkdir -p /var/cache/yum
|
mkdir -p /var/cache/yum
|
||||||
|
chattr -i /boot/extlinux/ldlinux.sys
|
||||||
/usr/sbin/fixfiles -R -a restore
|
/usr/sbin/fixfiles -R -a restore
|
||||||
|
chattr +i /boot/extlinux/ldlinux.sys
|
||||||
|
|
||||||
echo "Zeroing out empty space."
|
echo "Zeroing out empty space."
|
||||||
# This forces the filesystem to reclaim space from deleted files
|
# This forces the filesystem to reclaim space from deleted files
|
||||||
@@ -213,9 +219,5 @@ dd bs=1M if=/dev/zero of=/var/tmp/zeros || :
|
|||||||
rm -f /var/tmp/zeros
|
rm -f /var/tmp/zeros
|
||||||
echo "(Don't worry -- that out-of-space error was expected.)"
|
echo "(Don't worry -- that out-of-space error was expected.)"
|
||||||
|
|
||||||
# Enable network service here, as doing it in the services line
|
|
||||||
# fails due to RHBZ #1369794
|
|
||||||
/sbin/chkconfig network on
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -14,10 +14,10 @@ user --name=none
|
|||||||
|
|
||||||
firewall --disabled
|
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" --extlinux
|
||||||
|
|
||||||
network --bootproto=dhcp --device=eth0 --activate --onboot=on
|
network --bootproto=dhcp --device=eth0 --activate --onboot=on
|
||||||
services --enabled=sshd,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
|
||||||
clearpart --all
|
clearpart --all
|
||||||
@@ -88,6 +88,10 @@ passwd -l root
|
|||||||
# remove the user anaconda forces us to make
|
# remove the user anaconda forces us to make
|
||||||
userdel -r none
|
userdel -r none
|
||||||
|
|
||||||
|
# Kickstart specifies timeout in seconds; syslinux uses 10ths.
|
||||||
|
# 0 means wait forever, so instead we'll go with 1.
|
||||||
|
sed -i 's/^timeout 10/timeout 1/' /boot/extlinux/extlinux.conf
|
||||||
|
|
||||||
# setup systemd to boot to the right runlevel
|
# setup systemd to boot to the right runlevel
|
||||||
echo -n "Setting default runlevel to multiuser text mode"
|
echo -n "Setting default runlevel to multiuser text mode"
|
||||||
rm -f /etc/systemd/system/default.target
|
rm -f /etc/systemd/system/default.target
|
||||||
@@ -165,7 +169,7 @@ echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
|
|||||||
#EOF
|
#EOF
|
||||||
|
|
||||||
echo "Removing random-seed so it's not the same in every image."
|
echo "Removing random-seed so it's not the same in every image."
|
||||||
rm -f /var/lib/systemd/random-seed
|
rm -f /var/lib/random-seed
|
||||||
|
|
||||||
echo "Cleaning old yum repodata."
|
echo "Cleaning old yum repodata."
|
||||||
yum history new
|
yum history new
|
||||||
@@ -207,9 +211,5 @@ dd bs=1M if=/dev/zero of=/var/tmp/zeros || :
|
|||||||
rm -f /var/tmp/zeros
|
rm -f /var/tmp/zeros
|
||||||
echo "(Don't worry -- that out-of-space error was expected.)"
|
echo "(Don't worry -- that out-of-space error was expected.)"
|
||||||
|
|
||||||
# Enable network service here, as doing it in the services line
|
|
||||||
# fails due to RHBZ #1369794
|
|
||||||
/sbin/chkconfig network on
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -1,94 +0,0 @@
|
|||||||
# fedora-disk-base.ks
|
|
||||||
#
|
|
||||||
# Defines the basics for all kickstarts in the fedora-live branch
|
|
||||||
# Does not include package selection (other then mandatory)
|
|
||||||
# Does not include localization packages or configuration
|
|
||||||
#
|
|
||||||
# Does includes "default" language configuration (kickstarts including
|
|
||||||
# this template can override these settings)
|
|
||||||
|
|
||||||
text
|
|
||||||
lang en_US.UTF-8
|
|
||||||
keyboard us
|
|
||||||
timezone US/Eastern
|
|
||||||
auth --useshadow --passalgo=sha512
|
|
||||||
selinux --enforcing
|
|
||||||
firewall --enabled --service=mdns
|
|
||||||
services --enabled=sshd,NetworkManager,chronyd
|
|
||||||
network --bootproto=dhcp --device=link --activate
|
|
||||||
rootpw --lock --iscrypted locked
|
|
||||||
shutdown
|
|
||||||
|
|
||||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8"
|
|
||||||
|
|
||||||
zerombr
|
|
||||||
clearpart --all --initlabel --disklabel=msdos
|
|
||||||
|
|
||||||
# make sure that initial-setup runs and lets us do all the configuration bits
|
|
||||||
firstboot --reconfig
|
|
||||||
|
|
||||||
%include fedora-repo.ks
|
|
||||||
|
|
||||||
%packages
|
|
||||||
@core
|
|
||||||
@standard
|
|
||||||
@hardware-support
|
|
||||||
|
|
||||||
kernel
|
|
||||||
# remove this in %post
|
|
||||||
dracut-config-generic
|
|
||||||
-dracut-config-rescue
|
|
||||||
# install tools needed to manage and boot arm systems
|
|
||||||
@arm-tools
|
|
||||||
-uboot-images-armv7
|
|
||||||
rng-tools
|
|
||||||
chrony
|
|
||||||
bcm283x-firmware
|
|
||||||
initial-setup
|
|
||||||
-iwl*
|
|
||||||
-ipw*
|
|
||||||
-trousers-lib
|
|
||||||
-usb_modeswitch
|
|
||||||
-iproute-tc
|
|
||||||
-generic-release*
|
|
||||||
|
|
||||||
# make sure all the locales are available for inital0-setup and anaconda to work
|
|
||||||
glibc-all-langpacks
|
|
||||||
|
|
||||||
# workaround for consequence of RHBZ #1324623: without this, with
|
|
||||||
# yum-based creation tools, compose fails due to conflict between
|
|
||||||
# libcrypt and libcrypt-nss. dnf does not seem to have the same
|
|
||||||
# issue, so this may be dropped when appliance-creator is ported
|
|
||||||
# to dnf.
|
|
||||||
libcrypt-nss
|
|
||||||
-libcrypt
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post
|
|
||||||
|
|
||||||
# Setup Raspberry Pi firmware
|
|
||||||
cp -Pr /usr/share/bcm283x-firmware/* /boot/efi/
|
|
||||||
mv -f /boot/efi/config-64.txt /boot/efi/config.txt
|
|
||||||
cp -P /usr/share/uboot/rpi_3/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
|
||||||
|
|
||||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
|
||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-primary
|
|
||||||
echo "Packages within this disk image"
|
|
||||||
rpm -qa
|
|
||||||
# Note that running rpm recreates the rpm db files which aren't needed or wanted
|
|
||||||
rm -f /var/lib/rpm/__db*
|
|
||||||
|
|
||||||
# remove random seed, the newly installed instance should make it's own
|
|
||||||
rm -f /var/lib/systemd/random-seed
|
|
||||||
|
|
||||||
dnf -y remove dracut-config-generic
|
|
||||||
|
|
||||||
# Disable network service here, as doing it in the services line
|
|
||||||
# fails due to RHBZ #1369794
|
|
||||||
/sbin/chkconfig network off
|
|
||||||
|
|
||||||
# Remove machine-id on pre generated images
|
|
||||||
rm -f /etc/machine-id
|
|
||||||
touch /etc/machine-id
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
%include fedora-disk-base.ks
|
|
||||||
%include fedora-minimal-common.ks
|
|
||||||
|
|
||||||
services --enabled=sshd,NetworkManager,chronyd,initial-setup
|
|
||||||
|
|
||||||
autopart --type=plain
|
|
||||||
|
|
||||||
%packages
|
|
||||||
-xkeyboard-config
|
|
||||||
%end
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
%include fedora-disk-base.ks
|
|
||||||
|
|
||||||
services --enabled=sshd,NetworkManager,chronyd,initial-setup
|
|
||||||
|
|
||||||
autopart
|
|
||||||
|
|
||||||
%packages
|
|
||||||
# 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 .
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
%include fedora-disk-base.ks
|
|
||||||
%include fedora-disk-xbase.ks
|
|
||||||
%include fedora-workstation-common.ks
|
|
||||||
|
|
||||||
bootloader --append="cma=256MB"
|
|
||||||
|
|
||||||
services --enabled=sshd,NetworkManager,chronyd
|
|
||||||
|
|
||||||
autopart --type=plain
|
|
||||||
|
|
||||||
%packages
|
|
||||||
-initial-setup
|
|
||||||
-initial-setup-gui
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
%packages
|
|
||||||
@base-x
|
|
||||||
@fonts
|
|
||||||
@input-methods
|
|
||||||
@multimedia
|
|
||||||
@printing
|
|
||||||
-@guest-desktop-agents
|
|
||||||
|
|
||||||
# Need aajohan-comfortaa-fonts for the SVG rnotes images
|
|
||||||
aajohan-comfortaa-fonts
|
|
||||||
|
|
||||||
# anaconda needs the locales available to run for different locales
|
|
||||||
glibc-all-langpacks
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post
|
|
||||||
# Explicitly set graphical.target as default as this is how initial-setup detects which version to run
|
|
||||||
ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -1,70 +0,0 @@
|
|||||||
# See docker-base-common.ks for details on how to hack on docker image kickstarts
|
|
||||||
# This base is a stripped back Fedora image without python3/dnf.
|
|
||||||
# If you need that use the standard base image.
|
|
||||||
|
|
||||||
%include fedora-docker-common.ks
|
|
||||||
|
|
||||||
%packages --excludedocs --instLangs=en --nocore --excludeWeakdeps
|
|
||||||
microdnf
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post --erroronfail --log=/root/anaconda-post.log
|
|
||||||
# remove some random help txt files
|
|
||||||
rm -fv usr/share/gnupg/help*.txt
|
|
||||||
|
|
||||||
# Pruning random things
|
|
||||||
rm usr/lib/rpm/rpm.daily
|
|
||||||
rm -rfv usr/lib64/nss/unsupported-tools/ # unsupported
|
|
||||||
|
|
||||||
# Statically linked crap
|
|
||||||
rm -fv usr/sbin/{glibc_post_upgrade.x86_64,sln}
|
|
||||||
ln usr/bin/ln usr/sbin/sln
|
|
||||||
|
|
||||||
# Remove some dnf info
|
|
||||||
rm -rfv /var/lib/dnf
|
|
||||||
|
|
||||||
# don't need icons
|
|
||||||
rm -rfv /usr/share/icons/*
|
|
||||||
|
|
||||||
#some random not-that-useful binaries
|
|
||||||
rm -fv /usr/bin/pinky
|
|
||||||
|
|
||||||
# we lose presets by removing /usr/lib/systemd but we do not care
|
|
||||||
rm -rfv /usr/lib/systemd
|
|
||||||
|
|
||||||
# if you want to change the timezone, bind-mount it from the host or reinstall tzdata
|
|
||||||
rm -fv /etc/localtime
|
|
||||||
mv /usr/share/zoneinfo/UTC /etc/localtime
|
|
||||||
rm -rfv /usr/share/zoneinfo
|
|
||||||
|
|
||||||
# Final pruning
|
|
||||||
rm -rfv /var/cache/* /var/log/* /tmp/*
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post --nochroot --erroronfail --log=/mnt/sysimage/root/anaconda-post-nochroot.log
|
|
||||||
set -eux
|
|
||||||
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1343138
|
|
||||||
# Fix /run/lock breakage since it's not tmpfs in docker
|
|
||||||
# This unmounts /run (tmpfs) and then recreates the files
|
|
||||||
# in the /run directory on the root filesystem of the container
|
|
||||||
# NOTE: run this in nochroot because "umount" does not exist in chroot
|
|
||||||
umount /mnt/sysimage/run
|
|
||||||
# The file that specifies the /run/lock tmpfile is
|
|
||||||
# /usr/lib/tmpfiles.d/legacy.conf, which is part of the systemd
|
|
||||||
# rpm that isn't included in this image. We'll create the /run/lock
|
|
||||||
# file here manually with the settings from legacy.conf
|
|
||||||
# NOTE: chroot to run "install" because it is not in anaconda env
|
|
||||||
chroot /mnt/sysimage install -d /run/lock -m 0755 -o root -g root
|
|
||||||
|
|
||||||
|
|
||||||
# See: https://bugzilla.redhat.com/show_bug.cgi?id=1051816
|
|
||||||
# NOTE: run this in nochroot because "find" does not exist in chroot
|
|
||||||
KEEPLANG=en_US
|
|
||||||
for dir in locale i18n; do
|
|
||||||
find /mnt/sysimage/usr/share/${dir} -mindepth 1 -maxdepth 1 -type d -not \( -name "${KEEPLANG}" -o -name POSIX \) -exec rm -rfv {} +
|
|
||||||
done
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -1,43 +1,85 @@
|
|||||||
# See docker-base-common.ks for details on how to hack on docker image kickstarts
|
# This is a minimal Fedora install designed to serve as a Docker base image.
|
||||||
# This base is a standard Fedora image with python3 and dnf
|
#
|
||||||
|
# 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
|
||||||
|
#
|
||||||
|
|
||||||
%include fedora-docker-common.ks
|
cmdline
|
||||||
|
bootloader --disabled
|
||||||
|
timezone --isUtc --nontp Etc/UTC
|
||||||
|
rootpw --lock --iscrypted locked
|
||||||
|
user --name=none
|
||||||
|
|
||||||
|
keyboard us
|
||||||
|
zerombr
|
||||||
|
clearpart --all
|
||||||
|
part / --size 3000 --fstype ext4
|
||||||
|
network --bootproto=dhcp --device=link --activate --onboot=on
|
||||||
|
reboot
|
||||||
|
|
||||||
%packages --excludedocs --instLangs=en --nocore
|
%packages --excludedocs --instLangs=en --nocore
|
||||||
|
bash
|
||||||
|
fedora-release
|
||||||
rootfiles
|
rootfiles
|
||||||
tar # https://bugzilla.redhat.com/show_bug.cgi?id=1409920
|
|
||||||
vim-minimal
|
vim-minimal
|
||||||
dnf
|
dnf
|
||||||
dnf-yum # https://fedorahosted.org/fesco/ticket/1312#comment:29
|
dnf-yum # https://fedorahosted.org/fesco/ticket/1312#comment:29
|
||||||
sssd-client
|
sssd-client
|
||||||
|
#fakesystemd #TODO: waiting for review https://bugzilla.redhat.com/show_bug.cgi?id=1118740
|
||||||
|
-kernel
|
||||||
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%post --erroronfail --log=/root/anaconda-post.log
|
%post --log=/tmp/anaconda-post.log
|
||||||
|
# Set the language rpm nodocs transaction flag persistently in the
|
||||||
|
# image yum.conf and rpm macros
|
||||||
|
|
||||||
# remove some extraneous files
|
# remove the user anaconda forces us to make
|
||||||
rm -rf /var/cache/dnf/*
|
userdel -r none
|
||||||
rm -rf /tmp/*
|
|
||||||
|
|
||||||
# https://pagure.io/atomic-wg/issue/308
|
LANG="en_US"
|
||||||
printf "tsflags=nodocs\n" >>/etc/dnf/dnf.conf
|
echo "%_install_lang $LANG" > /etc/rpm/macros.image-language-conf
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
echo "Import RPM GPG key"
|
||||||
|
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
||||||
|
basearch=$(uname -i)
|
||||||
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||||
|
|
||||||
|
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 -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
|
#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
|
systemctl mask systemd-remount-fs.service dev-hugepages.mount sys-fs-fuse-connections.mount systemd-logind.service getty.target console-getty.service
|
||||||
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1343138
|
|
||||||
# Fix /run/lock breakage since it's not tmpfs in docker
|
# Fix /run/lock breakage since it's not tmpfs in docker
|
||||||
# This unmounts /run (tmpfs) and then recreates the files
|
|
||||||
# in the /run directory on the root filesystem of the container
|
|
||||||
#
|
|
||||||
# We ignore the return code of the systemd-tmpfiles command because
|
|
||||||
# at this point we have already removed the /etc/machine-id and all
|
|
||||||
# tmpfiles lines with %m in them will fail and cause a bad return
|
|
||||||
# code. Example failure:
|
|
||||||
# [/usr/lib/tmpfiles.d/systemd.conf:26] Failed to replace specifiers: /run/log/journal/%m
|
|
||||||
#
|
|
||||||
umount /run
|
umount /run
|
||||||
systemd-tmpfiles --prefix=/run/ --prefix=/var/run/ --create --boot || true
|
systemd-tmpfiles --create --boot
|
||||||
rm /run/nologin # https://pagure.io/atomic-wg/issue/316
|
|
||||||
|
rm -f /etc/machine-id
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1,68 +0,0 @@
|
|||||||
# This is the common bits between Fedora Docker base image.
|
|
||||||
#
|
|
||||||
# To keep this image minimal it only installs English language. You need to change
|
|
||||||
# dnf 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:
|
|
||||||
#
|
|
||||||
# ksflatten -c fedora-docker-base[-minimal].ks -o fedora-docker-base-test.ks
|
|
||||||
# imagefactory --debug target_image --template /path/to/fedora-atomic-rawhide.tdl --parameter offline_icicle true --file-parameter install_script $(pwd)/fedora-docker-base-test.ks docker
|
|
||||||
#
|
|
||||||
|
|
||||||
text # don't use cmdline -- https://github.com/rhinstaller/anaconda/issues/931
|
|
||||||
bootloader --disabled
|
|
||||||
timezone --isUtc --nontp Etc/UTC
|
|
||||||
rootpw --lock --iscrypted locked
|
|
||||||
keyboard us
|
|
||||||
network --bootproto=dhcp --device=link --activate --onboot=on
|
|
||||||
reboot
|
|
||||||
|
|
||||||
# boot partitions are irrelevant as the final docker image is a tarball
|
|
||||||
zerombr
|
|
||||||
clearpart --all
|
|
||||||
autopart --noboot --nohome --noswap --nolvm
|
|
||||||
|
|
||||||
%packages --excludedocs --instLangs=en --nocore
|
|
||||||
fedora-release
|
|
||||||
bash
|
|
||||||
-kernel
|
|
||||||
-dosfstools
|
|
||||||
-e2fsprogs
|
|
||||||
-fuse-libs
|
|
||||||
-gnupg2-smime
|
|
||||||
-libss # used by e2fsprogs
|
|
||||||
-libusbx
|
|
||||||
-pinentry
|
|
||||||
-shared-mime-info
|
|
||||||
-trousers
|
|
||||||
-xkeyboard-config
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post --erroronfail --log=/root/anaconda-post.log
|
|
||||||
set -eux
|
|
||||||
|
|
||||||
# Set install langs macro so that new rpms that get installed will
|
|
||||||
# only install langs that we limit it to.
|
|
||||||
LANG="en_US"
|
|
||||||
echo "%_install_langs $LANG" > /etc/rpm/macros.image-language-conf
|
|
||||||
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1400682
|
|
||||||
echo "Import RPM GPG key"
|
|
||||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
|
||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-primary
|
|
||||||
|
|
||||||
echo "# fstab intentionally empty for containers" > /etc/fstab
|
|
||||||
|
|
||||||
# Remove machine-id on pre generated images
|
|
||||||
rm -f /etc/machine-id
|
|
||||||
touch /etc/machine-id
|
|
||||||
|
|
||||||
%end
|
|
||||||
93
fedora-install-cloud.ks
Normal file
93
fedora-install-cloud.ks
Normal file
@@ -0,0 +1,93 @@
|
|||||||
|
# Kickstart file for composing the "Fedora Cloud" spin of Fedora (rawhide)
|
||||||
|
# Maintained by the Fedora Release Engineering team:
|
||||||
|
# https://fedoraproject.org/wiki/ReleaseEngineering
|
||||||
|
# mailto:rel-eng@lists.fedoraproject.org
|
||||||
|
|
||||||
|
# Use a part of 'iso' to define how large you want your isos.
|
||||||
|
# Only used when composing to more than one iso.
|
||||||
|
# Default is 695 (megs), CD size.
|
||||||
|
# Listed below is the size of a DVD if you wanted to split higher.
|
||||||
|
#part iso --size=4998
|
||||||
|
|
||||||
|
# Add the repos you wish to use to compose here. At least one of them needs group data.
|
||||||
|
|
||||||
|
# Only uncomment repo commands in one of the two following sections.
|
||||||
|
# Because the install kickstart doesn't use the updates repo and does
|
||||||
|
# use the source repo, we can't just include fedora-repo.ks
|
||||||
|
|
||||||
|
# In the master branch the rawhide repo commands should be uncommented.
|
||||||
|
#repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch --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
|
||||||
|
|
||||||
|
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
||||||
|
# (default groups for the configured repos are added by --default)
|
||||||
|
# @base got renamed to @standard, but @base is still included by default by pungi.
|
||||||
|
%packages --default
|
||||||
|
|
||||||
|
# pungi is an inclusive depsolver so that multiple packages are brought
|
||||||
|
# in to satisify dependencies and we don't always want that. So we use
|
||||||
|
# an exclusion list to cut out things we don't want
|
||||||
|
|
||||||
|
-kernel*debug*
|
||||||
|
-kernel-kdump*
|
||||||
|
-kernel-tools*
|
||||||
|
-syslog-ng*
|
||||||
|
-astronomy-bookmarks
|
||||||
|
# generic* would match generic-jms-ra, so don't 'simplify' this
|
||||||
|
-generic-logos*
|
||||||
|
-generic-release*
|
||||||
|
-GConf2-dbus*
|
||||||
|
-bluez-gnome
|
||||||
|
-community-mysql*
|
||||||
|
# jruby used to be in this list, but springframework-context explicitly
|
||||||
|
# requires it, not just 'any ruby implemention' - please check for things
|
||||||
|
# on the image that require mvn(org.jruby:jruby) before adding jruby to
|
||||||
|
# this list again - adamw 2014/09
|
||||||
|
#-jruby
|
||||||
|
|
||||||
|
# core
|
||||||
|
kernel*
|
||||||
|
dracut-*
|
||||||
|
|
||||||
|
|
||||||
|
# Things needed for installation
|
||||||
|
@anaconda-tools
|
||||||
|
fedora-productimg-cloud
|
||||||
|
-fedora-productimg-server
|
||||||
|
-fedora-productimg-workstation
|
||||||
|
|
||||||
|
# Packages to enable server images to run in cloud environments
|
||||||
|
@cloud-server
|
||||||
|
@core
|
||||||
|
@standard
|
||||||
|
@headless-management
|
||||||
|
@dogtag
|
||||||
|
@directory-server
|
||||||
|
@dns-server
|
||||||
|
@freeipa-server
|
||||||
|
@ftp-server
|
||||||
|
@guest-agents
|
||||||
|
@ha
|
||||||
|
@load-balancer
|
||||||
|
@mail-server
|
||||||
|
@mysql
|
||||||
|
@network-server
|
||||||
|
@smb-server
|
||||||
|
@sql-server
|
||||||
|
@web-server
|
||||||
|
|
||||||
|
# Langpacks
|
||||||
|
autocorr-*
|
||||||
|
hunspell-*
|
||||||
|
hyphen-*
|
||||||
|
man-pages-*
|
||||||
|
-gimp-help-*
|
||||||
|
|
||||||
|
# Removals
|
||||||
|
-PackageKit-zif
|
||||||
|
-zif
|
||||||
|
%end
|
||||||
135
fedora-install-server.ks
Normal file
135
fedora-install-server.ks
Normal file
@@ -0,0 +1,135 @@
|
|||||||
|
# Kickstart file for composing the "Fedora" spin of Fedora (rawhide)
|
||||||
|
# Maintained by the Fedora Release Engineering team:
|
||||||
|
# https://fedoraproject.org/wiki/ReleaseEngineering
|
||||||
|
# mailto:rel-eng@lists.fedoraproject.org
|
||||||
|
|
||||||
|
# Use a part of 'iso' to define how large you want your isos.
|
||||||
|
# Only used when composing to more than one iso.
|
||||||
|
# Default is 695 (megs), CD size.
|
||||||
|
# Listed below is the size of a DVD if you wanted to split higher.
|
||||||
|
#part iso --size=4998
|
||||||
|
|
||||||
|
# Add the repos you wish to use to compose here. At least one of them needs group data.
|
||||||
|
|
||||||
|
# Only uncomment repo commands in one of the two following sections.
|
||||||
|
# Because the install kickstart doesn't use the updates repo and does
|
||||||
|
# use the source repo, we can't just include fedora-repo.ks
|
||||||
|
|
||||||
|
# In the master branch the rawhide repo commands should be uncommented.
|
||||||
|
#repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch --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
|
||||||
|
|
||||||
|
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
||||||
|
# (default groups for the configured repos are added by --default)
|
||||||
|
# @base got renamed to @standard, but @base is still included by default by pungi.
|
||||||
|
%packages --default
|
||||||
|
|
||||||
|
-fedora-productimg-cloud
|
||||||
|
fedora-productimg-server
|
||||||
|
-fedora-productimg-workstation
|
||||||
|
|
||||||
|
# pungi is an inclusive depsolver so that multiple packages are brought
|
||||||
|
# in to satisify dependencies and we don't always want that. So we use
|
||||||
|
# an exclusion list to cut out things we don't want
|
||||||
|
|
||||||
|
-kernel*debug*
|
||||||
|
-kernel-kdump*
|
||||||
|
-kernel-tools*
|
||||||
|
-syslog-ng*
|
||||||
|
-astronomy-bookmarks
|
||||||
|
-generic-logos*
|
||||||
|
-generic-release*
|
||||||
|
-GConf2-dbus*
|
||||||
|
-bluez-gnome
|
||||||
|
-community-mysql*
|
||||||
|
|
||||||
|
# core
|
||||||
|
kernel*
|
||||||
|
dracut-*
|
||||||
|
|
||||||
|
# No desktops
|
||||||
|
-cinnamon*
|
||||||
|
-enlightenment*
|
||||||
|
-gnome-shell
|
||||||
|
-gnome-session
|
||||||
|
-kde*
|
||||||
|
-lightdm-kde
|
||||||
|
-lightdm-razorqt
|
||||||
|
# Pulls in qt
|
||||||
|
-oprofile-gui
|
||||||
|
|
||||||
|
-@legacy-fonts
|
||||||
|
|
||||||
|
-@multimedia
|
||||||
|
|
||||||
|
## common stuff
|
||||||
|
@guest-agents
|
||||||
|
@standard
|
||||||
|
@core
|
||||||
|
@hardware-support
|
||||||
|
@networkmanager-submodules
|
||||||
|
|
||||||
|
# Fedora Server.
|
||||||
|
# Including this causes the fedora-release-server package to be included,
|
||||||
|
# which in turn enables server-product-environment, and due to to its priority
|
||||||
|
# this will be the default environment.
|
||||||
|
@^server-product-environment
|
||||||
|
@server-product
|
||||||
|
@headless-management
|
||||||
|
@container-management
|
||||||
|
@domain-client
|
||||||
|
@server-hardware-support
|
||||||
|
|
||||||
|
# Common server packages
|
||||||
|
@mysql
|
||||||
|
@sql-server
|
||||||
|
@web-server
|
||||||
|
|
||||||
|
# Web Server environment
|
||||||
|
@haproxy
|
||||||
|
@mongodb
|
||||||
|
@python-web
|
||||||
|
@php
|
||||||
|
@rubyonrails
|
||||||
|
@tomcat
|
||||||
|
|
||||||
|
# Infrastructure Server
|
||||||
|
@directory-server
|
||||||
|
@dogtag
|
||||||
|
@dns-server
|
||||||
|
@freeipa-server
|
||||||
|
@ftp-server
|
||||||
|
@mail-server
|
||||||
|
@network-server
|
||||||
|
@printing
|
||||||
|
@smb-server
|
||||||
|
@virtualization-headless
|
||||||
|
@load-balancer
|
||||||
|
@ha
|
||||||
|
|
||||||
|
@javaenterprise
|
||||||
|
|
||||||
|
# “uservisible” groups we want to offer
|
||||||
|
@editors
|
||||||
|
@network-server
|
||||||
|
@system-tools
|
||||||
|
@text-internet
|
||||||
|
|
||||||
|
# Things needed for installation
|
||||||
|
@anaconda-tools
|
||||||
|
fedora-productimg-server
|
||||||
|
|
||||||
|
# Langpacks
|
||||||
|
autocorr-*
|
||||||
|
hunspell-*
|
||||||
|
man-pages-*
|
||||||
|
-gimp-help-*
|
||||||
|
|
||||||
|
# Removals
|
||||||
|
-PackageKit-zif
|
||||||
|
-zif
|
||||||
|
%end
|
||||||
51
fedora-install-workstation.ks
Normal file
51
fedora-install-workstation.ks
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
# Kickstart file for composing the "Fedora" spin of Fedora (rawhide)
|
||||||
|
# Maintained by the Fedora Release Engineering team:
|
||||||
|
# https://fedoraproject.org/wiki/ReleaseEngineering
|
||||||
|
# mailto:rel-eng@lists.fedoraproject.org
|
||||||
|
|
||||||
|
# Use a part of 'iso' to define how large you want your isos.
|
||||||
|
# Only used when composing to more than one iso.
|
||||||
|
# Default is 695 (megs), CD size.
|
||||||
|
# Listed below is the size of a DVD if you wanted to split higher.
|
||||||
|
#part iso --size=4998
|
||||||
|
|
||||||
|
# Add the repos you wish to use to compose here. At least one of them needs group data.
|
||||||
|
|
||||||
|
# Only uncomment repo commands in one of the two following sections.
|
||||||
|
# Because the install kickstart doesn't use the updates repo and does
|
||||||
|
# use the source repo, we can't just include fedora-repo.ks
|
||||||
|
|
||||||
|
# In the master branch the rawhide repo commands should be uncommented.
|
||||||
|
#repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch --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
|
||||||
|
|
||||||
|
%include fedora-workstation-packages.ks
|
||||||
|
|
||||||
|
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
||||||
|
# (default groups for the configured repos are added by --default)
|
||||||
|
# @base got renamed to @standard, but @base is still included by default by pungi.
|
||||||
|
%packages --default
|
||||||
|
|
||||||
|
# pungi is an inclusive depsolver so that multiple packages are brought
|
||||||
|
# in to satisify dependencies and we don't always want that. So we use
|
||||||
|
# an exclusion list to cut out things we don't want
|
||||||
|
-kernel*debug*
|
||||||
|
-kernel-kdump*
|
||||||
|
-kernel-tools*
|
||||||
|
-astronomy-bookmarks
|
||||||
|
-generic*
|
||||||
|
|
||||||
|
# core
|
||||||
|
kernel*
|
||||||
|
|
||||||
|
# Things needed for installation
|
||||||
|
@anaconda-tools
|
||||||
|
-fedora-productimg-cloud
|
||||||
|
-fedora-productimg-server
|
||||||
|
fedora-productimg-workstation
|
||||||
|
|
||||||
|
%end
|
||||||
@@ -1,79 +0,0 @@
|
|||||||
%packages
|
|
||||||
@firefox
|
|
||||||
@kde-apps
|
|
||||||
@kde-desktop
|
|
||||||
@kde-media
|
|
||||||
@kde-office
|
|
||||||
@kde-telepathy
|
|
||||||
@networkmanager-submodules
|
|
||||||
|
|
||||||
### The KDE-Desktop
|
|
||||||
|
|
||||||
### Browser
|
|
||||||
qupzilla
|
|
||||||
|
|
||||||
### fixes
|
|
||||||
|
|
||||||
# use kde-print-manager instead of system-config-printer
|
|
||||||
-system-config-printer
|
|
||||||
# make sure mariadb lands instead of MySQL (hopefully a temporary hack)
|
|
||||||
mariadb-embedded
|
|
||||||
mariadb-libs
|
|
||||||
mariadb-server
|
|
||||||
|
|
||||||
# minimal localization support - allows installing the kde-l10n-* packages
|
|
||||||
system-config-language
|
|
||||||
kde-l10n
|
|
||||||
|
|
||||||
# unwanted packages from @kde-desktop
|
|
||||||
# don't include these for now to fit on a cd
|
|
||||||
-desktop-backgrounds-basic
|
|
||||||
-kdeaccessibility*
|
|
||||||
#-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
|
|
||||||
mediawriter
|
|
||||||
|
|
||||||
# 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-tw-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
|
|
||||||
|
|
||||||
# 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
|
|
||||||
28
fedora-kde-packages.ks
Normal file
28
fedora-kde-packages.ks
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
%packages
|
||||||
|
@kde-apps
|
||||||
|
@kde-desktop
|
||||||
|
@kde-media
|
||||||
|
@kde-office
|
||||||
|
@kde-telepathy
|
||||||
|
@networkmanager-submodules
|
||||||
|
|
||||||
|
### The KDE-Desktop
|
||||||
|
|
||||||
|
### Browser
|
||||||
|
firefox
|
||||||
|
|
||||||
|
### fixes
|
||||||
|
|
||||||
|
# use kde-print-manager instead of system-config-printer
|
||||||
|
-system-config-printer
|
||||||
|
# make sure mariadb lands instead of MySQL (hopefully a temporary hack)
|
||||||
|
mariadb-embedded
|
||||||
|
mariadb-libs
|
||||||
|
mariadb-server
|
||||||
|
|
||||||
|
# minimal localization support - allows installing the kde-l10n-* packages
|
||||||
|
system-config-language
|
||||||
|
kde-l10n
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
%include fedora-live-kde.ks
|
%include fedora-live-kde.ks
|
||||||
|
|
||||||
# The recommended part size for DVDs is too close to use for the astronomy spin
|
# The recommended part size for DVDs is too close to use for the astronomy spin
|
||||||
part / --size 14500
|
part / --size 12288
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
|
|
||||||
@@ -35,7 +35,6 @@ sextractor
|
|||||||
siril
|
siril
|
||||||
skyviewer
|
skyviewer
|
||||||
swarp
|
swarp
|
||||||
wcstools
|
|
||||||
|
|
||||||
# Observatory: KStars + INDI drivers + Skychart
|
# Observatory: KStars + INDI drivers + Skychart
|
||||||
indi-aagcloudwatcher
|
indi-aagcloudwatcher
|
||||||
@@ -43,18 +42,55 @@ indi-apogee
|
|||||||
indi-eqmod
|
indi-eqmod
|
||||||
indi-gphoto
|
indi-gphoto
|
||||||
indi-sx
|
indi-sx
|
||||||
indistarter
|
|
||||||
kstars
|
kstars
|
||||||
|
skychart
|
||||||
|
skychart-data-dso
|
||||||
|
skychart-data-stars
|
||||||
stellarium
|
stellarium
|
||||||
|
|
||||||
# misc. astronomy
|
# misc. astronomy
|
||||||
celestia
|
celestia
|
||||||
virtualplanet
|
xvarstar
|
||||||
|
|
||||||
# Some astro environment stuff
|
# Some astro environment stuff
|
||||||
|
astronomy-bookmarks
|
||||||
astronomy-menus
|
astronomy-menus
|
||||||
astronomy-menus-toplevel
|
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
|
#python 3 and tools/libraries not included from the groups
|
||||||
python3
|
python3
|
||||||
python3-tools
|
python3-tools
|
||||||
@@ -67,38 +103,26 @@ python3-ipython-notebook
|
|||||||
python3-sympy
|
python3-sympy
|
||||||
python3-networkx
|
python3-networkx
|
||||||
python3-pandas
|
python3-pandas
|
||||||
python3-pillow
|
|
||||||
python3-seaborn
|
|
||||||
python3-statsmodels
|
|
||||||
python3-scikit-learn
|
|
||||||
python3-scikit-image
|
|
||||||
# Python 3 astronomy
|
# Python 3 astronomy
|
||||||
astropy-tools
|
|
||||||
ginga
|
|
||||||
python3-astropy
|
python3-astropy
|
||||||
python3-astroML
|
python3-astroML
|
||||||
python3-astroML-addons
|
|
||||||
python3-astroquery
|
|
||||||
python3-astroscrappy
|
|
||||||
python3-APLpy
|
python3-APLpy
|
||||||
python3-ATpy
|
python3-ATpy
|
||||||
python3-ccdproc
|
|
||||||
python3-fitsio
|
|
||||||
python3-gatspy
|
|
||||||
python3-photutils
|
python3-photutils
|
||||||
python3-pyvo
|
|
||||||
python3-reproject
|
|
||||||
python3-sep
|
python3-sep
|
||||||
python3-wcsaxes
|
|
||||||
|
|
||||||
# matplotlib backends
|
# matplotlib backends
|
||||||
|
python-matplotlib-qt4
|
||||||
|
python-matplotlib-qt5
|
||||||
|
python-matplotlib-tk
|
||||||
python3-matplotlib-qt4
|
python3-matplotlib-qt4
|
||||||
python3-matplotlib-qt5
|
python3-matplotlib-qt5
|
||||||
python3-matplotlib-tk
|
python3-matplotlib-tk
|
||||||
|
|
||||||
|
|
||||||
# Python IDE very useful for scientific use
|
# Python IDE very useful for scientific use
|
||||||
python3-spyder
|
spyder
|
||||||
|
|
||||||
|
|
||||||
#Version control- a GUI for each as well
|
#Version control- a GUI for each as well
|
||||||
|
|
||||||
@@ -106,24 +130,28 @@ python3-spyder
|
|||||||
rapidsvn
|
rapidsvn
|
||||||
git
|
git
|
||||||
git-gui
|
git-gui
|
||||||
|
# Mercurial
|
||||||
|
mercurial
|
||||||
|
mercurial-hgk
|
||||||
|
|
||||||
|
#Backup Utilities
|
||||||
|
backintime-kde
|
||||||
|
|
||||||
#Drawing, Picture viewing tools, Visualization tools
|
#Drawing, Picture viewing tools, Visualization tools
|
||||||
dia
|
dia
|
||||||
gimp
|
gimp
|
||||||
|
inkscape
|
||||||
kst
|
kst
|
||||||
kst-docs
|
kst-docs
|
||||||
kst-fits
|
kst-fits
|
||||||
LabPlot
|
scidavis
|
||||||
|
|
||||||
#Misc. Utils
|
#Misc. Utils
|
||||||
# icedtea-web to have webstart useful for VO tools
|
|
||||||
icedtea-web
|
|
||||||
ImageMagick
|
ImageMagick
|
||||||
kate
|
kate
|
||||||
kate-plugins
|
kate-plugins
|
||||||
rlwrap
|
rlwrap
|
||||||
screen
|
screen
|
||||||
plasma-applet-redshift-control
|
|
||||||
|
|
||||||
# Omit KDE 4 translations for now: https://bugzilla.redhat.com/show_bug.cgi?id=1197940
|
# Omit KDE 4 translations for now: https://bugzilla.redhat.com/show_bug.cgi?id=1197940
|
||||||
-kde-l10n-*
|
-kde-l10n-*
|
||||||
|
|||||||
@@ -14,13 +14,8 @@ auth --useshadow --passalgo=sha512
|
|||||||
selinux --enforcing
|
selinux --enforcing
|
||||||
firewall --enabled --service=mdns
|
firewall --enabled --service=mdns
|
||||||
xconfig --startxonboot
|
xconfig --startxonboot
|
||||||
zerombr
|
part / --size 4096 --fstype ext4
|
||||||
clearpart --all
|
services --enabled=NetworkManager,ModemManager --disabled=network,sshd
|
||||||
part / --size 5120 --fstype ext4
|
|
||||||
services --enabled=NetworkManager,ModemManager --disabled=sshd
|
|
||||||
network --bootproto=dhcp --device=link --activate
|
|
||||||
rootpw --lock --iscrypted locked
|
|
||||||
shutdown
|
|
||||||
|
|
||||||
%include fedora-repo.ks
|
%include fedora-repo.ks
|
||||||
|
|
||||||
@@ -39,8 +34,6 @@ shutdown
|
|||||||
# Explicitly specified here:
|
# Explicitly specified here:
|
||||||
# <notting> walters: because otherwise dependency loops cause yum issues.
|
# <notting> walters: because otherwise dependency loops cause yum issues.
|
||||||
kernel
|
kernel
|
||||||
kernel-modules
|
|
||||||
kernel-modules-extra
|
|
||||||
|
|
||||||
# This was added a while ago, I think it falls into the category of
|
# This was added a while ago, I think it falls into the category of
|
||||||
# "Diagnosis/recovery tool useful from a Live OS image". Leaving this untouched
|
# "Diagnosis/recovery tool useful from a Live OS image". Leaving this untouched
|
||||||
@@ -56,11 +49,7 @@ aajohan-comfortaa-fonts
|
|||||||
|
|
||||||
# Without this, initramfs generation during live image creation fails: #1242586
|
# Without this, initramfs generation during live image creation fails: #1242586
|
||||||
dracut-live
|
dracut-live
|
||||||
grub2-efi
|
|
||||||
syslinux
|
|
||||||
|
|
||||||
# anaconda needs the locales available to run for different locales
|
|
||||||
glibc-all-langpacks
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%post
|
%post
|
||||||
@@ -73,7 +62,7 @@ cat > /etc/rc.d/init.d/livesys << EOF
|
|||||||
# chkconfig: 345 00 99
|
# chkconfig: 345 00 99
|
||||||
# description: Init script for live image.
|
# description: Init script for live image.
|
||||||
### BEGIN INIT INFO
|
### BEGIN INIT INFO
|
||||||
# X-Start-Before: display-manager chronyd
|
# X-Start-Before: display-manager
|
||||||
### END INIT INFO
|
### END INIT INFO
|
||||||
|
|
||||||
. /etc/init.d/functions
|
. /etc/init.d/functions
|
||||||
@@ -215,9 +204,7 @@ touch /.liveimg-configured
|
|||||||
|
|
||||||
# add static hostname to work around xauth bug
|
# add static hostname to work around xauth bug
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=679486
|
# https://bugzilla.redhat.com/show_bug.cgi?id=679486
|
||||||
# the hostname must be something else than 'localhost'
|
echo "localhost" > /etc/hostname
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1370222
|
|
||||||
echo "localhost-live" > /etc/hostname
|
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
@@ -288,11 +275,21 @@ chmod 755 /etc/rc.d/init.d/livesys-late
|
|||||||
# enable tmpfs for /tmp
|
# enable tmpfs for /tmp
|
||||||
systemctl enable tmp.mount
|
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
|
# make it so that we don't do writing to the overlay for things which
|
||||||
# are just tmpdirs/caches
|
# are just tmpdirs/caches
|
||||||
# note https://bugzilla.redhat.com/show_bug.cgi?id=1135475
|
# note https://bugzilla.redhat.com/show_bug.cgi?id=1135475
|
||||||
cat >> /etc/fstab << EOF
|
cat >> /etc/fstab << EOF
|
||||||
vartmp /var/tmp tmpfs defaults 0 0
|
vartmp /var/tmp tmpfs defaults 0 0
|
||||||
|
varcacheyum /var/cache/yum tmpfs mode=0755,context=system_u:object_r:rpm_var_cache_t:s0 0 0
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# work around for poor key import UI in PackageKit
|
# work around for poor key import UI in PackageKit
|
||||||
@@ -308,30 +305,23 @@ rm -f /var/lib/rpm/__db*
|
|||||||
# go ahead and pre-make the man -k cache (#455968)
|
# go ahead and pre-make the man -k cache (#455968)
|
||||||
/usr/bin/mandb
|
/usr/bin/mandb
|
||||||
|
|
||||||
|
# save a little bit of space at least...
|
||||||
|
rm -f /boot/initramfs*
|
||||||
# make sure there aren't core files lying around
|
# make sure there aren't core files lying around
|
||||||
rm -f /core*
|
rm -f /core*
|
||||||
|
|
||||||
# remove random seed, the newly installed instance should make it's own
|
|
||||||
rm -f /var/lib/systemd/random-seed
|
|
||||||
|
|
||||||
# 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
|
||||||
|
|
||||||
echo 'File created by kickstart. See systemd-update-done.service(8).' \
|
echo 'File created by kickstart. See systemd-update-done.service(8).' \
|
||||||
| tee /etc/.updated >/var/.updated
|
| tee /etc/.updated >/var/.updated
|
||||||
|
|
||||||
# Drop the rescue kernel and initramfs, we don't need them on the live media itself.
|
|
||||||
# See bug 1317709
|
|
||||||
rm -f /boot/*-rescue*
|
|
||||||
|
|
||||||
# Disable network service here, as doing it in the services line
|
|
||||||
# fails due to RHBZ #1369794
|
|
||||||
/sbin/chkconfig network off
|
|
||||||
|
|
||||||
# Remove machine-id on pre generated images
|
|
||||||
rm -f /etc/machine-id
|
|
||||||
touch /etc/machine-id
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|
||||||
@@ -343,5 +333,4 @@ if [ "$(uname -i)" = "i386" -o "$(uname -i)" = "x86_64" ]; then
|
|||||||
if [ ! -d $LIVE_ROOT/LiveOS ]; then mkdir -p $LIVE_ROOT/LiveOS ; fi
|
if [ ! -d $LIVE_ROOT/LiveOS ]; then mkdir -p $LIVE_ROOT/LiveOS ; fi
|
||||||
cp /usr/bin/livecd-iso-to-disk $LIVE_ROOT/LiveOS
|
cp /usr/bin/livecd-iso-to-disk $LIVE_ROOT/LiveOS
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
%include fedora-live-base.ks
|
%include fedora-live-base.ks
|
||||||
%include fedora-live-minimization.ks
|
%include fedora-live-minimization.ks
|
||||||
%include fedora-cinnamon-common.ks
|
%include fedora-cinnamon-packages.ks
|
||||||
|
|
||||||
part / --size=6144
|
part / --size=6144
|
||||||
|
|
||||||
@@ -32,9 +32,6 @@ sed -i 's/^#autologin-user-timeout=.*/autologin-user-timeout=0/' /etc/lightdm/li
|
|||||||
# set Cinnamon as default session, otherwise login will fail
|
# set Cinnamon as default session, otherwise login will fail
|
||||||
sed -i 's/^#user-session=.*/user-session=cinnamon/' /etc/lightdm/lightdm.conf
|
sed -i 's/^#user-session=.*/user-session=cinnamon/' /etc/lightdm/lightdm.conf
|
||||||
|
|
||||||
# no updater applet in live environment
|
|
||||||
rm -f /etc/xdg/autostart/org.mageia.dnfdragora-updater.desktop
|
|
||||||
|
|
||||||
# Show harddisk install on the desktop
|
# Show harddisk install on the desktop
|
||||||
sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop
|
sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop
|
||||||
mkdir /home/liveuser/Desktop
|
mkdir /home/liveuser/Desktop
|
||||||
|
|||||||
@@ -1,61 +1,89 @@
|
|||||||
# fedora-design-suite.ks
|
# fedora-design-suite.ks
|
||||||
# Based on Live Workstation
|
# Based on Live Workstation
|
||||||
# Description:
|
# Description:
|
||||||
# - A collection of applications targeted towards professional visual designers
|
# - A Spin targeted towards professional designers
|
||||||
# Website: http://fedoraproject.org/wiki/Design_Suite
|
# Website: http://fedoraproject.org/wiki/Design_Suite
|
||||||
# Maintainer:
|
# Maintainers:
|
||||||
# - Luya Tshimbalanga <luya AT fedoraproject DOT org>
|
# - Luya Tshimbalanga <luya AT fedoraproject DOT org>
|
||||||
# - Credit to Sebastian Dziallas for initiating the project
|
# - Previous maintainer Sebastian Dziallas
|
||||||
|
|
||||||
%include fedora-live-workstation.ks
|
%include fedora-live-workstation.ks
|
||||||
|
|
||||||
# Size partition
|
#DVD size partition
|
||||||
part / --size 14336
|
part / --size 8192
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
# Switch to groups for design suite
|
# graphics
|
||||||
@design-suite
|
blender
|
||||||
|
#LuxRender-blender
|
||||||
# Added addons to address rhbz#1336879 from dnf
|
YafaRay-blender
|
||||||
gimp-data-extras
|
bluefish
|
||||||
gimp-dbp
|
colord-extra-profiles
|
||||||
gimp-dds-plugin
|
darktable
|
||||||
|
dia
|
||||||
|
entangle
|
||||||
|
fontforge
|
||||||
|
font-manager
|
||||||
|
gimp
|
||||||
gimp-elsamuko
|
gimp-elsamuko
|
||||||
gimp-fourier-plugin
|
gimp-*-plugin
|
||||||
|
gimp-data-extras
|
||||||
gimp-gap
|
gimp-gap
|
||||||
gimp-help
|
|
||||||
gimp-high-pass-filter
|
|
||||||
gimp-layer-via-copy-cut
|
|
||||||
gimp-lensfun
|
|
||||||
gimp-lqr-plugin
|
|
||||||
gimp-normalmap
|
|
||||||
gimp-paint-studio
|
gimp-paint-studio
|
||||||
|
gimp-high-pass-filter
|
||||||
|
gimp-normalmap
|
||||||
gimp-resynthesizer
|
gimp-resynthesizer
|
||||||
gimp-save-for-web
|
|
||||||
gimp-separate+
|
gimp-separate+
|
||||||
gimp-wavelet-denoise-plugin
|
gpick
|
||||||
gimpfx-foundry
|
GraphicsMagick
|
||||||
gmic-gimp
|
gmic-gimp
|
||||||
inkscape-psd
|
hugin
|
||||||
|
ImageMagick
|
||||||
|
inkscape
|
||||||
inkscape-sozi
|
inkscape-sozi
|
||||||
inkscape-table
|
inkscape-table
|
||||||
sane-backends-drivers-scanners
|
mypaint
|
||||||
xsane-gimp
|
nautilus-image-converter
|
||||||
#YafaRay-blender
|
optipng
|
||||||
|
phatch
|
||||||
|
screenruler
|
||||||
|
simple-scan
|
||||||
|
scribus
|
||||||
|
shutter
|
||||||
|
synfigstudio
|
||||||
|
xournal
|
||||||
|
|
||||||
# Add extra gnome applications
|
# office
|
||||||
gnome-books
|
vym
|
||||||
gnome-calendar
|
pdfmod
|
||||||
gnome-photos
|
pdfshuffler
|
||||||
|
|
||||||
|
# internet
|
||||||
|
filezilla
|
||||||
|
sparkleshare
|
||||||
|
sshpass
|
||||||
|
|
||||||
|
# audio & video
|
||||||
|
audacity
|
||||||
|
pitivi
|
||||||
|
|
||||||
|
# fonts
|
||||||
|
aajohan-comfortaa-fonts
|
||||||
|
adobe-source-sans-pro-fonts
|
||||||
|
campivisivi-titillium-fonts
|
||||||
|
lato-fonts
|
||||||
|
open-sans-fonts
|
||||||
|
overpass-fonts
|
||||||
|
|
||||||
# Extra wallpapers
|
# Extra wallpapers
|
||||||
f26-backgrounds-extras-base
|
f23-backgrounds-extras-base
|
||||||
f26-backgrounds-extras-gnome
|
f23-backgrounds-extras-gnome
|
||||||
|
|
||||||
|
|
||||||
# removal of unneeded applications
|
# removal of unneeded applications
|
||||||
-gnome-boxes
|
-gnome-boxes
|
||||||
|
-gthumb
|
||||||
-eog
|
-eog
|
||||||
|
-gnome-photos
|
||||||
-rdesktop
|
-rdesktop
|
||||||
|
|
||||||
%end
|
%end
|
||||||
@@ -64,7 +92,7 @@ f26-backgrounds-extras-gnome
|
|||||||
#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', 'shotwell.desktop', 'gimp.desktop', 'darktable.desktop','krita', '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']
|
||||||
FOE
|
FOE
|
||||||
|
|
||||||
# Add link to lists of tutorials
|
# Add link to lists of tutorials
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
%include fedora-live-xfce.ks
|
%include fedora-live-xfce.ks
|
||||||
|
|
||||||
# The recommended part size for DVDs is too close to use for the games spin
|
# The recommended part size for DVDs is too close to use for the games spin
|
||||||
part / --size 14336
|
part / --size 10240
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
|
|
||||||
@@ -51,16 +51,16 @@ gl-117
|
|||||||
glob2
|
glob2
|
||||||
lincity-ng
|
lincity-ng
|
||||||
tmw
|
tmw
|
||||||
#maniadrive - currently broken
|
maniadrive
|
||||||
#maniadrive-music - has been retired
|
maniadrive-music
|
||||||
megaglest
|
megaglest
|
||||||
nethack-vultures
|
nethack-vultures
|
||||||
netpanzer
|
netpanzer
|
||||||
#neverball #cut for size
|
#neverball #cut for size
|
||||||
nogravity
|
nogravity
|
||||||
#pinball # Would pull in fluid-soundfont-lite-patches
|
pinball
|
||||||
scorched3d
|
scorched3d
|
||||||
# supertux # Crashing
|
supertux
|
||||||
#supertuxkart #remove for size
|
#supertuxkart #remove for size
|
||||||
ultimatestunts
|
ultimatestunts
|
||||||
warzone2100
|
warzone2100
|
||||||
@@ -98,7 +98,7 @@ openlierox
|
|||||||
pachi
|
pachi
|
||||||
pioneers
|
pioneers
|
||||||
quarry
|
quarry
|
||||||
# Ri-li cut for size
|
Ri-li
|
||||||
rogue
|
rogue
|
||||||
# scorchwentbonkers # Would pull in fluid-soundfont-lite-patches
|
# scorchwentbonkers # Would pull in fluid-soundfont-lite-patches
|
||||||
seahorse-adventures
|
seahorse-adventures
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
# https://fedoraproject.org/wiki/User:jvlomax
|
# https://fedoraproject.org/wiki/User:jvlomax
|
||||||
# Brendan Jones <brendan.jones.it@gmail.com>
|
# Brendan Jones <brendan.jones.it@gmail.com>
|
||||||
|
|
||||||
%include fedora-live-kde.ks
|
%include fedora-livecd-kde.ks
|
||||||
|
|
||||||
# DVD size partition
|
# DVD size partition
|
||||||
part / --size 10240 --fstype ext4
|
part / --size 10240 --fstype ext4
|
||||||
@@ -77,7 +77,7 @@ sooperlooper
|
|||||||
|
|
||||||
#recodring and DAW
|
#recodring and DAW
|
||||||
audacity
|
audacity
|
||||||
ardour4
|
ardour3
|
||||||
rosegarden4
|
rosegarden4
|
||||||
seq24
|
seq24
|
||||||
muse
|
muse
|
||||||
@@ -108,6 +108,7 @@ ladspa-vco-plugins
|
|||||||
#lv2 plugins
|
#lv2 plugins
|
||||||
lv2
|
lv2
|
||||||
lv2-avw-plugins
|
lv2-avw-plugins
|
||||||
|
lv2-fil-plugins
|
||||||
lv2-invada-plugins
|
lv2-invada-plugins
|
||||||
lv2-kn0ck0ut
|
lv2-kn0ck0ut
|
||||||
lv2-ll-plugins
|
lv2-ll-plugins
|
||||||
@@ -167,6 +168,9 @@ rtirq
|
|||||||
japa
|
japa
|
||||||
radium-compressor
|
radium-compressor
|
||||||
|
|
||||||
|
#streaming
|
||||||
|
idjc
|
||||||
|
|
||||||
# fedora jam theming (to be customized)
|
# fedora jam theming (to be customized)
|
||||||
kfaenza-icon-theme
|
kfaenza-icon-theme
|
||||||
fedora-jam-backgrounds
|
fedora-jam-backgrounds
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# mailto:kde@lists.fedoraproject.org
|
# mailto:kde@lists.fedoraproject.org
|
||||||
|
|
||||||
%include fedora-live-base.ks
|
%include fedora-live-base.ks
|
||||||
%include fedora-kde-common.ks
|
%include fedora-kde-packages.ks
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
|
||||||
@@ -55,9 +55,11 @@ cat > /home/liveuser/.config/akonadi/akonadiserverrc << AKONADI_EOF
|
|||||||
Driver=QSQLITE3
|
Driver=QSQLITE3
|
||||||
AKONADI_EOF
|
AKONADI_EOF
|
||||||
|
|
||||||
# Disable plasma-pk-updates (bz #1436873 and 1206760)
|
# Disable plasma-pk-updates
|
||||||
echo "Removing plasma-pk-updates package."
|
sed -i \
|
||||||
rpm -e plasma-pk-updates
|
-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 baloo
|
# Disable baloo
|
||||||
cat > /home/liveuser/.config/baloofilerc << BALOO_EOF
|
cat > /home/liveuser/.config/baloofilerc << BALOO_EOF
|
||||||
|
|||||||
@@ -13,5 +13,64 @@
|
|||||||
# DVD payload
|
# DVD payload
|
||||||
part / --size=6144
|
part / --size=6144
|
||||||
|
|
||||||
|
|
||||||
|
%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
|
%post
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
%include fedora-live-base.ks
|
%include fedora-live-base.ks
|
||||||
%include fedora-live-minimization.ks
|
%include fedora-live-minimization.ks
|
||||||
%include fedora-lxde-common.ks
|
%include fedora-lxde-packages.ks
|
||||||
|
|
||||||
%post
|
%post
|
||||||
# LXDE and LXDM configuration
|
# LXDE and LXDM configuration
|
||||||
|
|||||||
@@ -1,51 +0,0 @@
|
|||||||
# fedora-live-lxqt.ks
|
|
||||||
#
|
|
||||||
# Description:
|
|
||||||
# – Fedora Live Spin with the LXQt desktop environment
|
|
||||||
#
|
|
||||||
# Maintainer(s):
|
|
||||||
# – Christian Dersch <lupinix@fedoraproject.org>
|
|
||||||
#
|
|
||||||
|
|
||||||
%include fedora-live-base.ks
|
|
||||||
%include fedora-live-minimization.ks
|
|
||||||
%include fedora-lxqt-common.ks
|
|
||||||
|
|
||||||
%post
|
|
||||||
# add initscript
|
|
||||||
cat >> /etc/rc.d/init.d/livesys << EOF
|
|
||||||
|
|
||||||
# set up autologin for user liveuser
|
|
||||||
if [ -f /etc/sddm.conf ]; then
|
|
||||||
sed -i 's/^#User=.*/User=liveuser/' /etc/sddm.conf
|
|
||||||
sed -i 's/^#Session=.*/Session=lxqt.desktop/' /etc/sddm.conf
|
|
||||||
else
|
|
||||||
cat > /etc/sddm.conf << SDDM_EOF
|
|
||||||
[Autologin]
|
|
||||||
User=liveuser
|
|
||||||
Session=lxqt.desktop
|
|
||||||
SDDM_EOF
|
|
||||||
fi
|
|
||||||
|
|
||||||
# show liveinst.desktop on desktop and in menu
|
|
||||||
sed -i 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop
|
|
||||||
mkdir /home/liveuser/Desktop
|
|
||||||
cp -a /usr/share/applications/liveinst.desktop /home/liveuser/Desktop/
|
|
||||||
|
|
||||||
# set up preferred apps
|
|
||||||
cat > /etc/xdg/libfm/pref-apps.conf << FOE
|
|
||||||
[Preferred Applications]
|
|
||||||
WebBrowser=qupzilla.desktop
|
|
||||||
FOE
|
|
||||||
|
|
||||||
# no updater applet in live environment
|
|
||||||
rm -f /etc/xdg/autostart/org.mageia.dnfdragora-updater.desktop
|
|
||||||
|
|
||||||
# make sure to set the right permissions and selinux contexts
|
|
||||||
chown -R liveuser:liveuser /home/liveuser/
|
|
||||||
restorecon -R /home/liveuser/
|
|
||||||
|
|
||||||
EOF
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
@@ -4,11 +4,48 @@
|
|||||||
# mailto:desktop@lists.fedoraproject.org
|
# mailto:desktop@lists.fedoraproject.org
|
||||||
|
|
||||||
%include fedora-live-base.ks
|
%include fedora-live-base.ks
|
||||||
%include fedora-mate-common.ks
|
%include fedora-mate-packages.ks
|
||||||
%include fedora-live-minimization.ks
|
%include fedora-live-minimization.ks
|
||||||
|
|
||||||
part / --size 6144
|
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
|
||||||
|
|
||||||
%post
|
%post
|
||||||
cat >> /etc/rc.d/init.d/livesys << EOF
|
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||||
|
|
||||||
@@ -21,9 +58,6 @@ fi
|
|||||||
mkdir /home/liveuser/Desktop
|
mkdir /home/liveuser/Desktop
|
||||||
cp /usr/share/applications/liveinst.desktop /home/liveuser/Desktop
|
cp /usr/share/applications/liveinst.desktop /home/liveuser/Desktop
|
||||||
|
|
||||||
# and mark it as executable
|
|
||||||
chmod +x /home/liveuser/Desktop/liveinst.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
|
||||||
|
|
||||||
@@ -40,12 +74,12 @@ if [ -f /etc/PackageKit/CommandNotFound.conf ]; then
|
|||||||
sed -i -e 's/^SoftwareSourceSearch=true/SoftwareSourceSearch=false/' /etc/PackageKit/CommandNotFound.conf
|
sed -i -e 's/^SoftwareSourceSearch=true/SoftwareSourceSearch=false/' /etc/PackageKit/CommandNotFound.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# no updater applet in live environment
|
|
||||||
rm -f /etc/xdg/autostart/org.mageia.dnfdragora-updater.desktop
|
|
||||||
|
|
||||||
# make sure to set the right permissions and selinux contexts
|
# make sure to set the right permissions and selinux contexts
|
||||||
chown -R liveuser:liveuser /home/liveuser/
|
chown -R liveuser:liveuser /home/liveuser/
|
||||||
restorecon -R /home/liveuser/
|
restorecon -R /home/liveuser/
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
# This is a huge file and things work ok without it
|
||||||
|
rm -f /usr/share/icons/HighContrast/icon-theme.cache
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
-mpage
|
-mpage
|
||||||
-sox
|
-sox
|
||||||
-hplip
|
-hplip
|
||||||
|
-hpijs
|
||||||
-numactl
|
-numactl
|
||||||
-isdn4k-utils
|
-isdn4k-utils
|
||||||
-autofs
|
-autofs
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
# Maintained by the Fedora Python SIG:
|
|
||||||
# http://fedoraproject.org/wiki/SIGs/Python
|
|
||||||
# mailto:python-devel@lists.fedoraproject.org
|
|
||||||
|
|
||||||
# The Workstion based Python Classroom Lab
|
|
||||||
|
|
||||||
%include fedora-live-workstation.ks
|
|
||||||
%include fedora-live-minimization.ks
|
|
||||||
%include fedora-python-classroom-gnome-common.ks
|
|
||||||
@@ -6,7 +6,7 @@
|
|||||||
%include fedora-live-minimization.ks
|
%include fedora-live-minimization.ks
|
||||||
|
|
||||||
# The recommended part size for DVDs is too close to use for the robotics spin
|
# The recommended part size for DVDs is too close to use for the robotics spin
|
||||||
part / --size 10752
|
part / --size 10240
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
# Start with GNOME
|
# Start with GNOME
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
# Fedora Scientific with KDE Desktop
|
#fedora-livedvd-scientific-kde.ks
|
||||||
|
# With KDE Desktop
|
||||||
|
|
||||||
# Fedora Scientific: For researchers in Science and Engineering
|
# Fedora Scientific: For researchers in Science and Engineering
|
||||||
# Fedora-Scientific aims to create a Fedora which has the generic
|
# Fedora-Scientific aims to create a Fedora which has the generic
|
||||||
# toolset for the researcher
|
# toolset for the researcher
|
||||||
# Web: https://labs.fedoraproject.org/en/scientific/
|
# Web: https://fedoraproject.org/wiki/Scientific_Spin
|
||||||
|
# Web: http://spins.fedoraproject.org/scientific-kde/
|
||||||
|
|
||||||
# Maintainer: Amit Saha <amitksaha@fedoraproject.org>
|
# Maintainer: Amit Saha <amitksaha@fedoraproject.org>
|
||||||
# https://fedoraproject.org/wiki/User:Amitksaha
|
# https://fedoraproject.org/wiki/User:Amitksaha
|
||||||
@@ -11,7 +13,7 @@
|
|||||||
%include fedora-live-kde.ks
|
%include fedora-live-kde.ks
|
||||||
|
|
||||||
# The recommended part size for DVDs is too close to use for the scientific spin
|
# The recommended part size for DVDs is too close to use for the scientific spin
|
||||||
part / --size 14500
|
part / --size 12288
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
|
|
||||||
@@ -19,12 +21,14 @@ part / --size 14500
|
|||||||
@engineering-and-scientific
|
@engineering-and-scientific
|
||||||
|
|
||||||
# scilab
|
# scilab
|
||||||
scilab
|
#scilab
|
||||||
scilab-devel
|
#scilab-devel
|
||||||
scilab-doc
|
#scilab-doc
|
||||||
|
|
||||||
# Remove sagemath explicitly?
|
# sagemath
|
||||||
-sagemath
|
# BZ #1006230 should fix this
|
||||||
|
#sagemath
|
||||||
|
#sagemath-notebook
|
||||||
|
|
||||||
#Devel tools
|
#Devel tools
|
||||||
|
|
||||||
@@ -44,7 +48,7 @@ ddd
|
|||||||
valgrind
|
valgrind
|
||||||
|
|
||||||
#python 2 tools/libraries not included from the groups
|
#python 2 tools/libraries not included from the groups
|
||||||
python2-tools
|
python-tools
|
||||||
python-ipython
|
python-ipython
|
||||||
python-ipython-console
|
python-ipython-console
|
||||||
python-ipython-notebook
|
python-ipython-notebook
|
||||||
@@ -84,10 +88,6 @@ rkward
|
|||||||
# GUI for Octave
|
# GUI for Octave
|
||||||
qtoctave
|
qtoctave
|
||||||
|
|
||||||
# julia
|
|
||||||
julia
|
|
||||||
julia-doc
|
|
||||||
|
|
||||||
# IDEs for the IDE folks
|
# IDEs for the IDE folks
|
||||||
@eclipse
|
@eclipse
|
||||||
spyder
|
spyder
|
||||||
@@ -113,6 +113,7 @@ valgrind-openmpi
|
|||||||
libgomp
|
libgomp
|
||||||
python-pp
|
python-pp
|
||||||
mpi4py-openmpi
|
mpi4py-openmpi
|
||||||
|
python3-mpi4py-openmpi
|
||||||
|
|
||||||
#Version control- a GUI for each as well
|
#Version control- a GUI for each as well
|
||||||
|
|
||||||
@@ -152,8 +153,8 @@ xzgv
|
|||||||
gimp
|
gimp
|
||||||
ggobi
|
ggobi
|
||||||
ggobi-devel
|
ggobi-devel
|
||||||
#g3data
|
g3data
|
||||||
#Mayavi
|
Mayavi
|
||||||
|
|
||||||
#Misc. Utils
|
#Misc. Utils
|
||||||
screen
|
screen
|
||||||
@@ -172,4 +173,4 @@ firefox
|
|||||||
|
|
||||||
%post
|
%post
|
||||||
|
|
||||||
%end
|
%end
|
||||||
@@ -6,9 +6,10 @@
|
|||||||
# Maintainers:
|
# Maintainers:
|
||||||
# Fabian Affolter <fab [AT] fedoraproject <dot> org>
|
# Fabian Affolter <fab [AT] fedoraproject <dot> org>
|
||||||
# Joerg Simon <jsimon [AT] fedoraproject <dot> org>
|
# Joerg Simon <jsimon [AT] fedoraproject <dot> org>
|
||||||
|
# Christoph Wickert <cwickert [AT] fedoraproject <dot> org>
|
||||||
# Acknowledgements:
|
# Acknowledgements:
|
||||||
# Fedora LiveCD Xfce Spin team - some work here was and will be inherited,
|
# Fedora LiveCD Xfce Spin team - some work here was and will be inherited,
|
||||||
# many thanks, especially to Christoph Wickert!
|
# many thanks!
|
||||||
# Fedora LXDE Spin - Copied over stuff to make LXDE Default
|
# Fedora LXDE Spin - Copied over stuff to make LXDE Default
|
||||||
# Luke Macken and Adam Miller for the original OpenBox Security ks and all
|
# Luke Macken and Adam Miller for the original OpenBox Security ks and all
|
||||||
# the Security Applications!
|
# the Security Applications!
|
||||||
@@ -93,6 +94,9 @@ gnome-keyring-pam
|
|||||||
%post
|
%post
|
||||||
# xfce configuration
|
# 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)
|
# create /etc/sysconfig/desktop (needed for installation)
|
||||||
|
|
||||||
cat > /etc/sysconfig/desktop <<EOF
|
cat > /etc/sysconfig/desktop <<EOF
|
||||||
|
|||||||
@@ -10,10 +10,86 @@
|
|||||||
|
|
||||||
%include fedora-live-base.ks
|
%include fedora-live-base.ks
|
||||||
%include fedora-live-minimization.ks
|
%include fedora-live-minimization.ks
|
||||||
%include fedora-soas-common.ks
|
%include fedora-soas-packages.ks
|
||||||
|
|
||||||
|
firewall --enabled --service=mdns,presence
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
|
||||||
|
# Rebuild initrd for Sugar boot screen
|
||||||
|
KERNEL_VERSION=$(rpm -q kernel --qf '%{version}-%{release}.%{arch}\n')
|
||||||
|
/usr/sbin/plymouth-set-default-theme sugar
|
||||||
|
/sbin/dracut -f /boot/initramfs-$KERNEL_VERSION.img $KERNEL_VERSION
|
||||||
|
|
||||||
|
# Note that running rpm recreates the rpm db files which aren't needed or wanted
|
||||||
|
rm -f /var/lib/rpm/__db*
|
||||||
|
|
||||||
|
# Get proper release naming in the control panel
|
||||||
|
cat >> /boot/olpc_build << EOF
|
||||||
|
Sugar on a Stick
|
||||||
|
EOF
|
||||||
|
cat /etc/fedora-release >> /boot/olpc_build
|
||||||
|
|
||||||
|
# Add our activities to the favorites
|
||||||
|
cat > /usr/share/sugar/data/activities.defaults << EOF
|
||||||
|
org.laptop.WebActivity
|
||||||
|
org.laptop.HelpActivity
|
||||||
|
org.laptop.Chat
|
||||||
|
org.laptop.sugar.ReadActivity
|
||||||
|
org.laptop.sugar.GetBooksActivity
|
||||||
|
org.laptop.AbiWordActivity
|
||||||
|
org.laptop.TurtleArtActivity
|
||||||
|
org.laptop.Calculate
|
||||||
|
org.laptop.Clock
|
||||||
|
org.laptop.ImageViewerActivity
|
||||||
|
org.laptop.Memorize
|
||||||
|
org.laptop.physics
|
||||||
|
org.laptop.Pippy
|
||||||
|
org.laptop.RecordActivity
|
||||||
|
org.laptop.Oficina
|
||||||
|
org.laptop.StopWatchActivity
|
||||||
|
org.laptop.community.Finance
|
||||||
|
org.laptop.community.TypingTurtle
|
||||||
|
org.laptop.sugar.Jukebox
|
||||||
|
org.eq.FotoToon
|
||||||
|
org.gnome.Labyrinth
|
||||||
|
com.laptop.Ruler
|
||||||
|
org.sugarlabs.AbacusActivity
|
||||||
|
org.sugarlabs.IRC
|
||||||
|
org.sugarlabs.InfoSlicer
|
||||||
|
org.sugarlabs.PortfolioActivity
|
||||||
|
org.sugarlabs.VisualMatchActivity
|
||||||
|
com.garycmartin.Moon
|
||||||
|
mulawa.Countries
|
||||||
|
tv.alterna.Clock
|
||||||
|
vu.lux.olpc.Maze
|
||||||
|
vu.lux.olpc.Speak
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cat > /etc/sysconfig/desktop <<EOF
|
||||||
|
PREFERRED=/usr/bin/sugar
|
||||||
|
DISPLAYMANAGER=/usr/sbin/lightdm
|
||||||
|
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
|
||||||
|
|
||||||
|
# Don't use the default system user (in SoaS liveuser) as nick name
|
||||||
|
# Disable the logout menu item in Sugar
|
||||||
|
# Enable Sugar power management
|
||||||
|
cat >/usr/share/glib-2.0/schemas/sugar.soas.gschema.override <<EOF
|
||||||
|
[org.sugarlabs.user]
|
||||||
|
default-nick='disabled'
|
||||||
|
|
||||||
|
[org.sugarlabs]
|
||||||
|
show-logout=false
|
||||||
|
|
||||||
|
[org.sugarlabs.power]
|
||||||
|
automatic=true
|
||||||
|
EOF
|
||||||
|
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas/sugar.soas.gschema.override
|
||||||
|
|
||||||
cat >> /etc/rc.d/init.d/livesys << EOF
|
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||||
# set up lightdm autologin
|
# set up lightdm autologin
|
||||||
sed -i 's/^#autologin-user=.*/autologin-user=liveuser/' /etc/lightdm/lightdm.conf
|
sed -i 's/^#autologin-user=.*/autologin-user=liveuser/' /etc/lightdm/lightdm.conf
|
||||||
|
|||||||
@@ -3,17 +3,16 @@
|
|||||||
# mailto:desktop@lists.fedoraproject.org
|
# mailto:desktop@lists.fedoraproject.org
|
||||||
|
|
||||||
%include fedora-live-base.ks
|
%include fedora-live-base.ks
|
||||||
%include fedora-workstation-common.ks
|
%include fedora-workstation-packages.ks
|
||||||
#
|
%include snippets/packagekit-cached-metadata.ks
|
||||||
# Disable this for now as packagekit is causing compose failures
|
|
||||||
# by leaving a gpg-agent around holding /dev/null open.
|
|
||||||
#
|
|
||||||
#include snippets/packagekit-cached-metadata.ks
|
|
||||||
|
|
||||||
part / --size 6656
|
part / --size 6144
|
||||||
|
|
||||||
%post
|
%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
|
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -11,11 +11,14 @@
|
|||||||
|
|
||||||
%include fedora-live-base.ks
|
%include fedora-live-base.ks
|
||||||
%include fedora-live-minimization.ks
|
%include fedora-live-minimization.ks
|
||||||
%include fedora-xfce-common.ks
|
%include fedora-xfce-packages.ks
|
||||||
|
|
||||||
%post
|
%post
|
||||||
# xfce configuration
|
# 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)
|
# create /etc/sysconfig/desktop (needed for installation)
|
||||||
|
|
||||||
cat > /etc/sysconfig/desktop <<EOF
|
cat > /etc/sysconfig/desktop <<EOF
|
||||||
@@ -30,7 +33,7 @@ mkdir -p /home/liveuser/.config/xfce4
|
|||||||
cat > /home/liveuser/.config/xfce4/helpers.rc << FOE
|
cat > /home/liveuser/.config/xfce4/helpers.rc << FOE
|
||||||
MailReader=sylpheed-claws
|
MailReader=sylpheed-claws
|
||||||
FileManager=Thunar
|
FileManager=Thunar
|
||||||
WebBrowser=firefox
|
WebBrowser=midori
|
||||||
FOE
|
FOE
|
||||||
|
|
||||||
# disable screensaver locking (#674410)
|
# disable screensaver locking (#674410)
|
||||||
|
|||||||
@@ -43,6 +43,7 @@ metacity
|
|||||||
-acpid
|
-acpid
|
||||||
-gimp-help
|
-gimp-help
|
||||||
-desktop-backgrounds-basic
|
-desktop-backgrounds-basic
|
||||||
|
-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
|
||||||
-foomatic-db-ppds
|
-foomatic-db-ppds
|
||||||
-foomatic
|
-foomatic
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
# fedora-lxqt-common.ks
|
|
||||||
#
|
|
||||||
# Description:
|
|
||||||
# – Fedora Live Spin with the LXQt desktop environment
|
|
||||||
#
|
|
||||||
# Maintainer(s):
|
|
||||||
# – Christian Dersch <lupinix@fedoraproject.org>
|
|
||||||
#
|
|
||||||
|
|
||||||
%packages
|
|
||||||
@lxqt
|
|
||||||
@lxqt-apps
|
|
||||||
@lxqt-media
|
|
||||||
@networkmanager-submodules
|
|
||||||
|
|
||||||
# for nm applet
|
|
||||||
gnome-keyring
|
|
||||||
|
|
||||||
|
|
||||||
# l10n
|
|
||||||
lxqt-l10n
|
|
||||||
lximage-qt-l10n
|
|
||||||
obconf-qt-l10n
|
|
||||||
pavucontrol-qt-l10n
|
|
||||||
|
|
||||||
# MP3
|
|
||||||
gstreamer1-plugin-mpg123
|
|
||||||
|
|
||||||
# remove unneeded stuff to get a lightweight system
|
|
||||||
# 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-tw-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
|
|
||||||
|
|
||||||
# Fix https://bugzilla.redhat.com/show_bug.cgi?id=1429132
|
|
||||||
# Why is this not pulled in by anaconda???
|
|
||||||
storaged
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
%packages
|
%packages
|
||||||
-PackageKit* # we switched to yumex, so we don't need this
|
|
||||||
firefox
|
firefox
|
||||||
@mate
|
@mate
|
||||||
compiz
|
compiz
|
||||||
@@ -7,21 +6,26 @@ compiz-plugins-main
|
|||||||
compiz-plugins-extra
|
compiz-plugins-extra
|
||||||
compiz-manager
|
compiz-manager
|
||||||
compizconfig-python
|
compizconfig-python
|
||||||
compiz-plugins-experimental
|
compiz-plugins-unsupported
|
||||||
|
compiz-mate
|
||||||
libcompizconfig
|
libcompizconfig
|
||||||
compiz-plugins-main
|
compiz-plugins-main
|
||||||
ccsm
|
ccsm
|
||||||
simple-ccsm
|
|
||||||
emerald-themes
|
emerald-themes
|
||||||
emerald
|
emerald
|
||||||
fusion-icon
|
fusion-icon
|
||||||
@networkmanager-submodules
|
@networkmanager-submodules
|
||||||
blueberry
|
blueman
|
||||||
|
|
||||||
# some apps from mate-applications
|
# some apps from mate-applications
|
||||||
caja-actions
|
# caja-actions
|
||||||
mate-disk-usage-analyzer
|
mate-disk-usage-analyzer
|
||||||
|
|
||||||
|
# more backgrounds
|
||||||
|
f23-backgrounds-base
|
||||||
|
f23-backgrounds-mate
|
||||||
|
f23-backgrounds-extras-base
|
||||||
|
|
||||||
# system tools
|
# system tools
|
||||||
system-config-printer
|
system-config-printer
|
||||||
system-config-printer-applet
|
system-config-printer-applet
|
||||||
@@ -30,10 +34,7 @@ lightdm-gtk-greeter-settings
|
|||||||
# audio video
|
# audio video
|
||||||
parole
|
parole
|
||||||
exaile
|
exaile
|
||||||
gstreamer1-plugins-ugly-free # mp3 support
|
PackageKit-gstreamer-plugin
|
||||||
|
|
||||||
# blacklist applications which breaks mate-desktop
|
|
||||||
-audacious
|
|
||||||
|
|
||||||
# office
|
# office
|
||||||
@libreoffice
|
@libreoffice
|
||||||
@@ -41,32 +42,14 @@ gstreamer1-plugins-ugly-free # mp3 support
|
|||||||
# dsl tools
|
# dsl tools
|
||||||
rp-pppoe
|
rp-pppoe
|
||||||
|
|
||||||
# some tools
|
# drop packages
|
||||||
p7zip
|
-PackageKit* # we switched to yumex, so we don't need this
|
||||||
p7zip-plugins
|
|
||||||
|
# blacklist applications which breaks mate-desktop
|
||||||
|
-audacious
|
||||||
|
|
||||||
# FIXME; apparently the glibc maintainers dislike this, but it got put into the
|
# 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.
|
# desktop image at some point. We won't touch this one for now.
|
||||||
nss-mdns
|
nss-mdns
|
||||||
|
|
||||||
# Drop things for size
|
|
||||||
-@3d-printing
|
|
||||||
-brasero
|
|
||||||
-colord
|
|
||||||
-fedora-icon-theme
|
|
||||||
-gnome-icon-theme
|
|
||||||
-gnome-icon-theme-symbolic
|
|
||||||
-gnome-software
|
|
||||||
-gnome-user-docs
|
|
||||||
|
|
||||||
-@mate-applications
|
|
||||||
-mate-icon-theme-faenza
|
|
||||||
|
|
||||||
# Help and art can be big, too
|
|
||||||
-gnome-user-docs
|
|
||||||
-evolution-help
|
|
||||||
|
|
||||||
# Legacy cmdline things we don't want
|
|
||||||
-telnet
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
%packages
|
|
||||||
-@standard
|
|
||||||
-initial-setup-gui
|
|
||||||
-generic-release*
|
|
||||||
-glibc-all-langpacks
|
|
||||||
glibc-langpack-en
|
|
||||||
iw
|
|
||||||
NetworkManager-wifi
|
|
||||||
%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 .
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -1,81 +0,0 @@
|
|||||||
text
|
|
||||||
lang en_US.UTF-8
|
|
||||||
keyboard us
|
|
||||||
timezone US/Eastern
|
|
||||||
auth --useshadow --passalgo=sha512
|
|
||||||
selinux --enforcing
|
|
||||||
# Disabled for modular compose (for now)
|
|
||||||
#firewall --enabled --service=mdns
|
|
||||||
# Disabled for modular compose (for now)
|
|
||||||
#services --enabled=sshd,NetworkManager,chronyd,initial-setup
|
|
||||||
network --bootproto=dhcp --device=link --activate
|
|
||||||
rootpw --lock --iscrypted locked
|
|
||||||
shutdown
|
|
||||||
|
|
||||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8"
|
|
||||||
|
|
||||||
zerombr
|
|
||||||
clearpart --all --initlabel --disklabel=msdos
|
|
||||||
autopart --type=plain
|
|
||||||
|
|
||||||
# make sure that initial-setup runs and lets us do all the configuration bits
|
|
||||||
firstboot --reconfig
|
|
||||||
|
|
||||||
%include fedora-repo.ks
|
|
||||||
|
|
||||||
%packages --excludedocs --excludeWeakdeps --nocore
|
|
||||||
bash
|
|
||||||
fedora-modular-release
|
|
||||||
filesystem
|
|
||||||
coreutils-single
|
|
||||||
util-linux
|
|
||||||
rpm
|
|
||||||
shadow-utils
|
|
||||||
microdnf
|
|
||||||
glibc-minimal-langpack
|
|
||||||
grubby
|
|
||||||
kernel
|
|
||||||
libcrypt
|
|
||||||
sssd-client
|
|
||||||
dhcp-client
|
|
||||||
-fedora-logos
|
|
||||||
-coreutils
|
|
||||||
-dosfstools
|
|
||||||
-e2fsprogs
|
|
||||||
-fuse-libs
|
|
||||||
-gnupg2-smime
|
|
||||||
-libss # used by e2fsprogs
|
|
||||||
-libusbx
|
|
||||||
-pinentry
|
|
||||||
-shared-mime-info
|
|
||||||
-trousers
|
|
||||||
-xkeyboard-config
|
|
||||||
-dracut
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post
|
|
||||||
|
|
||||||
# Setup Raspberry Pi firmware
|
|
||||||
#cp -Pr /usr/share/bcm283x-firmware/* /boot/efi/
|
|
||||||
mv -f /boot/efi/config-64.txt /boot/efi/config.txt
|
|
||||||
cp -P /usr/share/uboot/rpi_3/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
|
||||||
|
|
||||||
releasever=$(rpm -q --qf '%{version}\n' fedora-modular-release)
|
|
||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-primary
|
|
||||||
echo "Packages within this disk image"
|
|
||||||
rpm -qa
|
|
||||||
# Note that running rpm recreates the rpm db files which aren't needed or wanted
|
|
||||||
rm -f /var/lib/rpm/__db*
|
|
||||||
|
|
||||||
# remove random seed, the newly installed instance should make it's own
|
|
||||||
rm -f /var/lib/systemd/random-seed
|
|
||||||
|
|
||||||
# Disable network service here, as doing it in the services line
|
|
||||||
# fails due to RHBZ #1369794
|
|
||||||
/sbin/chkconfig network off
|
|
||||||
|
|
||||||
# Remove machine-id on pre generated images
|
|
||||||
rm -f /etc/machine-id
|
|
||||||
touch /etc/machine-id
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -1,70 +0,0 @@
|
|||||||
# See docker-base-common.ks for details on how to hack on docker image kickstarts
|
|
||||||
# This base is a stripped back Fedora image without python3/dnf.
|
|
||||||
# If you need that use the standard base image.
|
|
||||||
|
|
||||||
%include fedora-modular-docker-common.ks
|
|
||||||
|
|
||||||
%packages --excludedocs --instLangs=en --nocore --excludeWeakdeps
|
|
||||||
microdnf
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post --erroronfail --log=/root/anaconda-post.log
|
|
||||||
# remove some random help txt files
|
|
||||||
rm -fv usr/share/gnupg/help*.txt
|
|
||||||
|
|
||||||
# Pruning random things
|
|
||||||
rm usr/lib/rpm/rpm.daily
|
|
||||||
rm -rfv usr/lib64/nss/unsupported-tools/ # unsupported
|
|
||||||
|
|
||||||
# Statically linked crap
|
|
||||||
rm -fv usr/sbin/{glibc_post_upgrade.x86_64,sln}
|
|
||||||
ln usr/bin/ln usr/sbin/sln
|
|
||||||
|
|
||||||
# Remove some dnf info
|
|
||||||
rm -rfv /var/lib/dnf
|
|
||||||
|
|
||||||
# don't need icons
|
|
||||||
rm -rfv /usr/share/icons/*
|
|
||||||
|
|
||||||
#some random not-that-useful binaries
|
|
||||||
rm -fv /usr/bin/pinky
|
|
||||||
|
|
||||||
# we lose presets by removing /usr/lib/systemd but we do not care
|
|
||||||
rm -rfv /usr/lib/systemd
|
|
||||||
|
|
||||||
# if you want to change the timezone, bind-mount it from the host or reinstall tzdata
|
|
||||||
rm -fv /etc/localtime
|
|
||||||
mv /usr/share/zoneinfo/UTC /etc/localtime
|
|
||||||
rm -rfv /usr/share/zoneinfo
|
|
||||||
|
|
||||||
# Final pruning
|
|
||||||
rm -rfv /var/cache/* /var/log/* /tmp/*
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post --nochroot --erroronfail --log=/mnt/sysimage/root/anaconda-post-nochroot.log
|
|
||||||
set -eux
|
|
||||||
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1343138
|
|
||||||
# Fix /run/lock breakage since it's not tmpfs in docker
|
|
||||||
# This unmounts /run (tmpfs) and then recreates the files
|
|
||||||
# in the /run directory on the root filesystem of the container
|
|
||||||
# NOTE: run this in nochroot because "umount" does not exist in chroot
|
|
||||||
umount /mnt/sysimage/run
|
|
||||||
# The file that specifies the /run/lock tmpfile is
|
|
||||||
# /usr/lib/tmpfiles.d/legacy.conf, which is part of the systemd
|
|
||||||
# rpm that isn't included in this image. We'll create the /run/lock
|
|
||||||
# file here manually with the settings from legacy.conf
|
|
||||||
# NOTE: chroot to run "install" because it is not in anaconda env
|
|
||||||
chroot /mnt/sysimage install -d /run/lock -m 0755 -o root -g root
|
|
||||||
|
|
||||||
|
|
||||||
# See: https://bugzilla.redhat.com/show_bug.cgi?id=1051816
|
|
||||||
# NOTE: run this in nochroot because "find" does not exist in chroot
|
|
||||||
KEEPLANG=en_US
|
|
||||||
for dir in locale i18n; do
|
|
||||||
find /mnt/sysimage/usr/share/${dir} -mindepth 1 -maxdepth 1 -type d -not \( -name "${KEEPLANG}" -o -name POSIX \) -exec rm -rfv {} +
|
|
||||||
done
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -1,75 +0,0 @@
|
|||||||
# This is the common bits between Docker base images based on Modular Fedora.
|
|
||||||
#
|
|
||||||
# To keep this image minimal it only installs English language. You need to change
|
|
||||||
# dnf 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://pagure.io/fedora-atomic/raw/master/f/fedora-atomic-rawhide.tdl
|
|
||||||
#
|
|
||||||
# Then, once you have imagefactory and imagefactory-plugins installed, run:
|
|
||||||
#
|
|
||||||
# ksflatten -c fedora-modular-base[-minimal].ks -o fedora-modular-base-test.ks
|
|
||||||
# imagefactory --debug target_image --template /path/to/fedora-atomic-rawhide.tdl --parameter offline_icicle true --file-parameter install_script $(pwd)/fedora-modular-base-test.ks modular
|
|
||||||
#
|
|
||||||
|
|
||||||
text # don't use cmdline -- https://github.com/rhinstaller/anaconda/issues/931
|
|
||||||
bootloader --disabled
|
|
||||||
timezone --isUtc --nontp Etc/UTC
|
|
||||||
rootpw --lock --iscrypted locked
|
|
||||||
keyboard us
|
|
||||||
network --bootproto=dhcp --device=link --activate --onboot=on
|
|
||||||
reboot
|
|
||||||
|
|
||||||
# boot partitions are irrelevant as the final docker image is a tarball
|
|
||||||
zerombr
|
|
||||||
clearpart --all
|
|
||||||
autopart --noboot --nohome --noswap --nolvm
|
|
||||||
|
|
||||||
%packages --excludedocs --instLangs=en --nocore
|
|
||||||
fedora-modular-release
|
|
||||||
bash
|
|
||||||
coreutils-single
|
|
||||||
glibc-minimal-langpack
|
|
||||||
libcrypt
|
|
||||||
rpm
|
|
||||||
shadow-utils
|
|
||||||
sssd-client
|
|
||||||
util-linux
|
|
||||||
-kernel
|
|
||||||
-dosfstools
|
|
||||||
-e2fsprogs
|
|
||||||
-fuse-libs
|
|
||||||
-gnupg2-smime
|
|
||||||
-libss # used by e2fsprogs
|
|
||||||
-libusbx
|
|
||||||
-pinentry
|
|
||||||
-shared-mime-info
|
|
||||||
-trousers
|
|
||||||
-xkeyboard-config
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post --erroronfail --log=/root/anaconda-post.log
|
|
||||||
set -eux
|
|
||||||
|
|
||||||
# Set install langs macro so that new rpms that get installed will
|
|
||||||
# only install langs that we limit it to.
|
|
||||||
LANG="en_US"
|
|
||||||
echo "%_install_langs $LANG" > /etc/rpm/macros.image-language-conf
|
|
||||||
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1400682
|
|
||||||
echo "Import RPM GPG key"
|
|
||||||
releasever=$(rpm -q --qf '%{version}\n' fedora-modular-release)
|
|
||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-primary
|
|
||||||
|
|
||||||
echo "# fstab intentionally empty for containers" > /etc/fstab
|
|
||||||
|
|
||||||
# Remove machine-id on pre generated images
|
|
||||||
rm -f /etc/machine-id
|
|
||||||
touch /etc/machine-id
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
# Maintained by the Fedora Python SIG:
|
|
||||||
# http://fedoraproject.org/wiki/SIGs/Python
|
|
||||||
# mailto:python-devel@lists.fedoraproject.org
|
|
||||||
|
|
||||||
# Common packages of all Python Classroom images
|
|
||||||
|
|
||||||
%packages
|
|
||||||
@python-classroom
|
|
||||||
@python-science
|
|
||||||
nano
|
|
||||||
openssh-clients
|
|
||||||
vim-enhanced
|
|
||||||
wget
|
|
||||||
|
|
||||||
# Remove Pythons possibly recommended by tox
|
|
||||||
-python26
|
|
||||||
-python33
|
|
||||||
-python34
|
|
||||||
-python35
|
|
||||||
-pypy
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -1,103 +0,0 @@
|
|||||||
# Maintained by the Fedora Python SIG:
|
|
||||||
# http://fedoraproject.org/wiki/SIGs/Python
|
|
||||||
# mailto:python-devel@lists.fedoraproject.org
|
|
||||||
|
|
||||||
# GNOME part of Python Classroom images
|
|
||||||
|
|
||||||
%include fedora-python-classroom-common.ks
|
|
||||||
|
|
||||||
%packages
|
|
||||||
ninja-ide
|
|
||||||
emacs
|
|
||||||
python3-matplotlib-tk
|
|
||||||
python3-pillow-tk
|
|
||||||
|
|
||||||
# Remove extra gnome-y things
|
|
||||||
-@graphical-internet
|
|
||||||
-@games
|
|
||||||
-@sound-and-video
|
|
||||||
-@multimedia
|
|
||||||
-dleyna*
|
|
||||||
-evolution*
|
|
||||||
-gnome-boxes
|
|
||||||
-gnome-calendar
|
|
||||||
-gnome-clocks
|
|
||||||
-gnome-contacts
|
|
||||||
-gnome-disk-utility
|
|
||||||
-gnome-documents
|
|
||||||
-gnome-font-viewer
|
|
||||||
-gnome-maps
|
|
||||||
-gnome-weather
|
|
||||||
-grilo-plugins
|
|
||||||
-cheese
|
|
||||||
-totem
|
|
||||||
-totem-nautilus
|
|
||||||
|
|
||||||
# This is no longer workstation
|
|
||||||
-@workstation-product
|
|
||||||
-fedora-productimg-workstation
|
|
||||||
|
|
||||||
# Add a web browser
|
|
||||||
@firefox
|
|
||||||
|
|
||||||
# Remove office suite
|
|
||||||
-@libreoffice
|
|
||||||
-libreoffice-*
|
|
||||||
-planner
|
|
||||||
|
|
||||||
# Drop the Java plugin and Java
|
|
||||||
-icedtea-web
|
|
||||||
-java*
|
|
||||||
|
|
||||||
# No printing
|
|
||||||
-@printing
|
|
||||||
-foomatic-db-ppds
|
|
||||||
-foomatic
|
|
||||||
|
|
||||||
# Dictionaries are big
|
|
||||||
-aspell-*
|
|
||||||
-words
|
|
||||||
|
|
||||||
# Help and art can be big, too
|
|
||||||
-gnome-user-docs
|
|
||||||
-desktop-backgrounds-basic
|
|
||||||
-*backgrounds-extras
|
|
||||||
|
|
||||||
# Legacy cmdline things we don't want
|
|
||||||
-krb5-auth-dialog
|
|
||||||
-krb5-workstation
|
|
||||||
-pam_krb5
|
|
||||||
-quota
|
|
||||||
-dos2unix
|
|
||||||
-finger
|
|
||||||
-ftp
|
|
||||||
-jwhois
|
|
||||||
-mtr
|
|
||||||
-pinfo
|
|
||||||
-rsh
|
|
||||||
-nfs-utils
|
|
||||||
-ypbind
|
|
||||||
-yp-tools
|
|
||||||
-rpcbind
|
|
||||||
-acpid
|
|
||||||
-ntsysv
|
|
||||||
|
|
||||||
# Don't need this
|
|
||||||
-linux-atm
|
|
||||||
|
|
||||||
# Drop some system-config things
|
|
||||||
-system-config-language
|
|
||||||
-system-config-network
|
|
||||||
-system-config-rootpassword
|
|
||||||
-system-config-services
|
|
||||||
-policycoreutils-gui
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
|
|
||||||
%post
|
|
||||||
|
|
||||||
#Override the favorite desktop application in Dash
|
|
||||||
sed -i "s/favorite-apps=."'*'"/favorite-apps=['firefox.desktop', 'org.gnome.Terminal.desktop', 'org.gnome.Nautilus.desktop', 'org.gnome.gedit.desktop', 'anaconda.desktop']/" /etc/rc.d/init.d/livesys
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
# Maintained by the Fedora Python SIG:
|
|
||||||
# http://fedoraproject.org/wiki/SIGs/Python
|
|
||||||
# mailto:python-devel@lists.fedoraproject.org
|
|
||||||
|
|
||||||
# Like the Python Classroom image, but tuned for vagrant.
|
|
||||||
|
|
||||||
%include fedora-cloud-base-vagrant.ks
|
|
||||||
%include fedora-python-classroom-common.ks
|
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
repo --name=fedora --mirrorlist=https://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=https://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=https://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
|
||||||
url --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
|
||||||
|
|||||||
@@ -1,2 +1 @@
|
|||||||
repo --name=rawhide --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
repo --name=rawhide --mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=rawhide&arch=$basearch
|
||||||
url --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
|
||||||
|
|||||||
@@ -1,165 +0,0 @@
|
|||||||
# fedora-livecd-soas.ks
|
|
||||||
#
|
|
||||||
# Description:
|
|
||||||
# - A Sugar environment that you can carry in your pocket
|
|
||||||
#
|
|
||||||
# Maintainers:
|
|
||||||
# - Peter Robinson <pbrobinson AT gmail DOT com>
|
|
||||||
|
|
||||||
firewall --enabled --service=mdns,presence
|
|
||||||
|
|
||||||
%packages
|
|
||||||
-@fonts
|
|
||||||
-@dial-up
|
|
||||||
-@multimedia
|
|
||||||
-@printing
|
|
||||||
-foomatic
|
|
||||||
-@gnome-desktop
|
|
||||||
-yp-tools
|
|
||||||
-ypbind
|
|
||||||
-rdate
|
|
||||||
-rdist
|
|
||||||
-icedtea-web
|
|
||||||
-firefox
|
|
||||||
-glx-utils
|
|
||||||
-nmap-ncat
|
|
||||||
-PackageKit
|
|
||||||
-eekboard-libs
|
|
||||||
-open-vm-tools*
|
|
||||||
-gfs2-utils
|
|
||||||
-abrt-cli
|
|
||||||
-ibus*
|
|
||||||
-hyperv-daemons
|
|
||||||
-webkitgtk4-plugin-process-gtk2
|
|
||||||
webkitgtk3
|
|
||||||
|
|
||||||
# Add some extra fonts
|
|
||||||
dejavu-sans-fonts
|
|
||||||
dejavu-sans-mono-fonts
|
|
||||||
madan-fonts
|
|
||||||
aajohan-comfortaa-fonts
|
|
||||||
sil-abyssinica-fonts
|
|
||||||
vlgothic-fonts
|
|
||||||
|
|
||||||
# == Core Sugar Platform ==
|
|
||||||
@sugar-desktop
|
|
||||||
-sugar-ruler
|
|
||||||
sugar-cp-updater
|
|
||||||
lightdm
|
|
||||||
lightdm-gtk
|
|
||||||
|
|
||||||
# Write breaks unless we do this (we don't need it anyway)
|
|
||||||
# enable for testing in the F17 dev cycle
|
|
||||||
@input-methods
|
|
||||||
|
|
||||||
# Needed for wifi, bluetooth and WWAN connection support
|
|
||||||
@networkmanager-submodules
|
|
||||||
|
|
||||||
# == Platform Components ==
|
|
||||||
# from http://wiki.sugarlabs.org/go/0.94/Platform_Components
|
|
||||||
alsa-plugins-pulseaudio
|
|
||||||
alsa-utils
|
|
||||||
gstreamer1-plugins-base
|
|
||||||
gstreamer1-plugins-good
|
|
||||||
gstreamer1-plugins-bad-free
|
|
||||||
gstreamer-plugins-espeak
|
|
||||||
pulseaudio
|
|
||||||
pulseaudio-utils
|
|
||||||
|
|
||||||
# explicitly remove openbox and hopefully deal with what firstboot wants
|
|
||||||
-openbox
|
|
||||||
|
|
||||||
# remove deps that come from god knows where
|
|
||||||
-sane-backends
|
|
||||||
-sane-backends-drivers-scanners
|
|
||||||
|
|
||||||
# Usefulness for DSL connections as per:
|
|
||||||
# http://bugs.sugarlabs.org/ticket/1951
|
|
||||||
rp-pppoe
|
|
||||||
|
|
||||||
# Get the Sugar boot screen
|
|
||||||
-plymouth-system-theme
|
|
||||||
-plymouth-theme-charge
|
|
||||||
sugar-logos
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post
|
|
||||||
|
|
||||||
# Rebuild initrd for Sugar boot screen
|
|
||||||
KERNEL_VERSION=$(rpm -q kernel --qf '%{version}-%{release}.%{arch}\n')
|
|
||||||
/usr/sbin/plymouth-set-default-theme sugar
|
|
||||||
/sbin/dracut -f /boot/initramfs-$KERNEL_VERSION.img $KERNEL_VERSION
|
|
||||||
|
|
||||||
# Note that running rpm recreates the rpm db files which aren't needed or wanted
|
|
||||||
rm -f /var/lib/rpm/__db*
|
|
||||||
|
|
||||||
# Get proper release naming in the control panel
|
|
||||||
cat >> /boot/olpc_build << EOF
|
|
||||||
Sugar on a Stick
|
|
||||||
EOF
|
|
||||||
cat /etc/fedora-release >> /boot/olpc_build
|
|
||||||
|
|
||||||
# Add our activities to the favorites
|
|
||||||
cat > /usr/share/sugar/data/activities.defaults << EOF
|
|
||||||
org.laptop.WebActivity
|
|
||||||
org.laptop.HelpActivity
|
|
||||||
org.laptop.Chat
|
|
||||||
org.laptop.sugar.ReadActivity
|
|
||||||
org.laptop.sugar.GetBooksActivity
|
|
||||||
org.laptop.AbiWordActivity
|
|
||||||
org.laptop.TurtleArtActivity
|
|
||||||
org.laptop.Calculate
|
|
||||||
org.laptop.Clock
|
|
||||||
org.laptop.ImageViewerActivity
|
|
||||||
org.laptop.Memorize
|
|
||||||
org.laptop.physics
|
|
||||||
org.laptop.Pippy
|
|
||||||
org.laptop.RecordActivity
|
|
||||||
org.laptop.Oficina
|
|
||||||
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
|
|
||||||
org.sugarlabs.AbacusActivity
|
|
||||||
org.sugarlabs.IRC
|
|
||||||
org.sugarlabs.InfoSlicer
|
|
||||||
org.sugarlabs.PortfolioActivity
|
|
||||||
org.sugarlabs.StoryActivity
|
|
||||||
org.sugarlabs.VisualMatchActivity
|
|
||||||
com.garycmartin.Moon
|
|
||||||
mulawa.Countries
|
|
||||||
tv.alterna.Clock
|
|
||||||
vu.lux.olpc.Maze
|
|
||||||
vu.lux.olpc.Speak
|
|
||||||
EOF
|
|
||||||
|
|
||||||
cat > /etc/sysconfig/desktop <<EOF
|
|
||||||
PREFERRED=/usr/bin/sugar
|
|
||||||
DISPLAYMANAGER=/usr/sbin/lightdm
|
|
||||||
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
|
|
||||||
|
|
||||||
# Don't use the default system user (in SoaS liveuser) as nick name
|
|
||||||
# Disable the logout menu item in Sugar
|
|
||||||
# Enable Sugar power management
|
|
||||||
cat >/usr/share/glib-2.0/schemas/sugar.soas.gschema.override <<EOF
|
|
||||||
[org.sugarlabs.user]
|
|
||||||
default-nick='disabled'
|
|
||||||
|
|
||||||
[org.sugarlabs]
|
|
||||||
show-logout=false
|
|
||||||
|
|
||||||
[org.sugarlabs.power]
|
|
||||||
automatic=true
|
|
||||||
EOF
|
|
||||||
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas/sugar.soas.gschema.override
|
|
||||||
|
|
||||||
%end
|
|
||||||
88
fedora-soas-packages.ks
Normal file
88
fedora-soas-packages.ks
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
# fedora-livecd-soas.ks
|
||||||
|
#
|
||||||
|
# Description:
|
||||||
|
# - A Sugar environment that you can carry in your pocket
|
||||||
|
#
|
||||||
|
# Maintainers:
|
||||||
|
# - Peter Robinson <pbrobinson AT gmail DOT com>
|
||||||
|
# - Sebastian Dziallas <sdz AT fedoraproject DOT org>
|
||||||
|
# - Mel Chua <mchua AT fedoraproject DOT org>
|
||||||
|
|
||||||
|
%packages
|
||||||
|
-@fonts
|
||||||
|
-@dial-up
|
||||||
|
-@multimedia
|
||||||
|
-@printing
|
||||||
|
-foomatic
|
||||||
|
-@gnome-desktop
|
||||||
|
-yp-tools
|
||||||
|
-ypbind
|
||||||
|
-rdate
|
||||||
|
-rdist
|
||||||
|
-icedtea-web
|
||||||
|
-firefox
|
||||||
|
-glx-utils
|
||||||
|
-nmap-ncat
|
||||||
|
-PackageKit
|
||||||
|
-libfprint
|
||||||
|
-realmd
|
||||||
|
-eekboard-libs
|
||||||
|
-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 ==
|
||||||
|
@sugar-desktop
|
||||||
|
-sugar-ruler
|
||||||
|
sugar-cp-updater
|
||||||
|
lightdm
|
||||||
|
lightdm-gtk
|
||||||
|
|
||||||
|
# Write breaks unless we do this (we don't need it anyway)
|
||||||
|
# enable for testing in the F17 dev cycle
|
||||||
|
@input-methods
|
||||||
|
|
||||||
|
# Needed for wifi, bluetooth and WWAN connection support
|
||||||
|
@networkmanager-submodules
|
||||||
|
|
||||||
|
# == Platform Components ==
|
||||||
|
# from http://wiki.sugarlabs.org/go/0.94/Platform_Components
|
||||||
|
alsa-plugins-pulseaudio
|
||||||
|
alsa-utils
|
||||||
|
gstreamer1-plugins-base
|
||||||
|
gstreamer1-plugins-good
|
||||||
|
gstreamer1-plugins-bad-free
|
||||||
|
gstreamer-plugins-espeak
|
||||||
|
pulseaudio
|
||||||
|
pulseaudio-utils
|
||||||
|
|
||||||
|
# explicitly remove openbox and hopefully deal with what firstboot wants
|
||||||
|
-openbox
|
||||||
|
|
||||||
|
# remove deps that come from god knows where
|
||||||
|
-sane-backends
|
||||||
|
-sane-backends-drivers-scanners
|
||||||
|
|
||||||
|
# Usefulness for DSL connections as per:
|
||||||
|
# http://bugs.sugarlabs.org/ticket/1951
|
||||||
|
rp-pppoe
|
||||||
|
# Useful for SoaS duplication from:
|
||||||
|
# http://bugs.sugarlabs.org/ticket/74
|
||||||
|
livecd-tools
|
||||||
|
|
||||||
|
# Get the Sugar boot screen
|
||||||
|
-plymouth-system-theme
|
||||||
|
-plymouth-theme-charge
|
||||||
|
sugar-logos
|
||||||
|
|
||||||
|
%end
|
||||||
@@ -11,7 +11,6 @@
|
|||||||
@core
|
@core
|
||||||
@firefox
|
@firefox
|
||||||
@fonts
|
@fonts
|
||||||
@gnome-desktop
|
|
||||||
@guest-desktop-agents
|
@guest-desktop-agents
|
||||||
@hardware-support
|
@hardware-support
|
||||||
@libreoffice
|
@libreoffice
|
||||||
@@ -21,16 +21,10 @@
|
|||||||
|
|
||||||
# unlock default keyring. FIXME: Should probably be done in comps
|
# unlock default keyring. FIXME: Should probably be done in comps
|
||||||
gnome-keyring-pam
|
gnome-keyring-pam
|
||||||
# Admin tools are handy to have
|
|
||||||
@admin-tools
|
|
||||||
# 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
|
wget
|
||||||
# Handy for debugging
|
|
||||||
rfkill
|
|
||||||
# Better more popular browser
|
|
||||||
firefox
|
|
||||||
system-config-printer
|
system-config-printer
|
||||||
|
|
||||||
# save some space
|
# save some space
|
||||||
@@ -38,6 +32,7 @@ system-config-printer
|
|||||||
-acpid
|
-acpid
|
||||||
-gimp-help
|
-gimp-help
|
||||||
-desktop-backgrounds-basic
|
-desktop-backgrounds-basic
|
||||||
|
-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
|
||||||
-aspell-* # dictionaries are big
|
-aspell-* # dictionaries are big
|
||||||
-xfce4-sensors-plugin
|
-xfce4-sensors-plugin
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
# fedora-livecd-cinnamon-de_DE.ks
|
|
||||||
#
|
|
||||||
# Description:
|
|
||||||
# - German Fedora Live Spin with the Cinnamon Desktop Environment
|
|
||||||
#
|
|
||||||
# Maintainer(s):
|
|
||||||
# - Björn Esser <besser82@fedoraproject.org>
|
|
||||||
|
|
||||||
%include ../fedora-live-cinnamon.ks
|
|
||||||
|
|
||||||
lang de_DE.UTF-8
|
|
||||||
keyboard de-latin1-nodeadkeys
|
|
||||||
timezone Europe/Berlin
|
|
||||||
|
|
||||||
%packages
|
|
||||||
@german-support
|
|
||||||
# exclude input methods
|
|
||||||
-m17n*
|
|
||||||
-scim*
|
|
||||||
%end
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
# fedora-livecd-cinnamon-ja_JP.ks
|
|
||||||
#
|
|
||||||
# Description:
|
|
||||||
# - Japanese Fedora Live Spin with the Cinnamon Desktop Environment
|
|
||||||
#
|
|
||||||
# Maintainer(s):
|
|
||||||
# - Shintaro Fujiwara <shintaro.fujiwara@miraclelinux.com>
|
|
||||||
|
|
||||||
%include ../fedora-live-cinnamon.ks
|
|
||||||
|
|
||||||
lang ja_JP.UTF-8
|
|
||||||
keyboard jp
|
|
||||||
timezone Asia/Tokyo
|
|
||||||
|
|
||||||
%packages
|
|
||||||
@japanese-support
|
|
||||||
# exclude input methods except ibus:
|
|
||||||
-m17n*
|
|
||||||
-scim*
|
|
||||||
-iok
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post
|
|
||||||
cat > /etc/X11/xorg.conf.d/00-keyboard.conf << "EOF"
|
|
||||||
# Read and parsed by systemd-localed. It's probably wise not to edit this file
|
|
||||||
# manually too freely.
|
|
||||||
Section "InputClass"
|
|
||||||
Identifier "system-keyboard"
|
|
||||||
MatchIsKeyboard "on"
|
|
||||||
Option "XkbLayout" "jp"
|
|
||||||
Option "XkbModel" "jp106"
|
|
||||||
EndSection
|
|
||||||
EOF
|
|
||||||
%end
|
|
||||||
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
# fedora-livecd-lxde-ja_JP.ks
|
|
||||||
#
|
|
||||||
# Description:
|
|
||||||
# - Japanese Fedora Live Spin with the LXDE Desktop Environment
|
|
||||||
#
|
|
||||||
# Maintainer(s):
|
|
||||||
# - Shintaro Fujiwara <shintaro.fujiwara@miraclelinux.com>
|
|
||||||
|
|
||||||
%include ../fedora-live-lxde.ks
|
|
||||||
|
|
||||||
lang ja_JP.UTF-8
|
|
||||||
keyboard jp
|
|
||||||
timezone Asia/Tokyo
|
|
||||||
|
|
||||||
%packages
|
|
||||||
@japanese-support
|
|
||||||
# exclude input methods:
|
|
||||||
-m17n*
|
|
||||||
-scim*
|
|
||||||
-ibus*
|
|
||||||
-iok
|
|
||||||
# Better more popular browser
|
|
||||||
firefox
|
|
||||||
# ibus stuff
|
|
||||||
ibus-kkc
|
|
||||||
imsettings
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post
|
|
||||||
cat >> /etc/rc.d/init.d/livesys << EOF
|
|
||||||
#### setting env and start ibus-deamon ####
|
|
||||||
#mkdir /home/liveuser
|
|
||||||
cat >> /home/liveuser/.bash_profile << FOE
|
|
||||||
export XMODIFIERS="@im=ibus"
|
|
||||||
export GTK_IM_MODULE=ibus
|
|
||||||
export QT_IM_MODULE=ibus
|
|
||||||
ibus-daemon -drx
|
|
||||||
FOE
|
|
||||||
#### autostart ibus and stuff ####
|
|
||||||
cat > /etc/xdg/autostart/imsettings-start.desktop << "FOE"
|
|
||||||
[Desktop Entry]
|
|
||||||
Encoding=UTF-8
|
|
||||||
Type=Application
|
|
||||||
Version=1.0
|
|
||||||
Name=Input Method starter
|
|
||||||
Name[ja]=入力メソッドのスターター
|
|
||||||
Exec=imsettings-switch -n -q -x
|
|
||||||
Terminal=false
|
|
||||||
FOE
|
|
||||||
EOF
|
|
||||||
cat > /etc/X11/xorg.conf.d/00-keyboard.conf << "EOF"
|
|
||||||
# Read and parsed by systemd-localed. It's probably wise not to edit this file
|
|
||||||
# manually too freely.
|
|
||||||
Section "InputClass"
|
|
||||||
Identifier "system-keyboard"
|
|
||||||
MatchIsKeyboard "on"
|
|
||||||
Option "XkbLayout" "jp"
|
|
||||||
Option "XkbModel" "jp106"
|
|
||||||
EndSection
|
|
||||||
EOF
|
|
||||||
%end
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
# fedora-livecd-xfce-ja_JP.ks
|
|
||||||
#
|
|
||||||
# Description:
|
|
||||||
# - Japanese Fedora Live Spin with the Xfce Desktop Environment
|
|
||||||
#
|
|
||||||
# Maintainer(s):
|
|
||||||
# - Shintaro Fujiwara <shintaro.fujiwara@miraclelinux.com>
|
|
||||||
|
|
||||||
%include ../fedora-live-xfce.ks
|
|
||||||
|
|
||||||
lang ja_JP.UTF-8
|
|
||||||
keyboard jp
|
|
||||||
timezone Asia/Tokyo
|
|
||||||
|
|
||||||
%packages
|
|
||||||
@japanese-support
|
|
||||||
# exclude input methods except ibus:
|
|
||||||
-m17n*
|
|
||||||
-scim*
|
|
||||||
-iok
|
|
||||||
|
|
||||||
# ibus-kkc
|
|
||||||
ibus-kkc
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post
|
|
||||||
cat > /etc/X11/xorg.conf.d/00-keyboard.conf << "EOF"
|
|
||||||
# Read and parsed by systemd-localed. It's probably wise not to edit this file
|
|
||||||
# manually too freely.
|
|
||||||
Section "InputClass"
|
|
||||||
Identifier "system-keyboard"
|
|
||||||
MatchIsKeyboard "on"
|
|
||||||
Option "XkbLayout" "jp"
|
|
||||||
Option "XkbModel" "jp106"
|
|
||||||
EndSection
|
|
||||||
EOF
|
|
||||||
%end
|
|
||||||
|
|
||||||
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
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
%post --nochroot
|
%post --nochroot
|
||||||
# Copy over files needed for networking inside the chroot
|
# Copy over files needed for networking inside the chroot
|
||||||
for f in /etc/resolv.conf /etc/hosts ; do
|
for f in /etc/resolv.conf /etc/hosts ; do
|
||||||
test -f $f && cp $f /mnt/sysimage/$f.kickstart
|
test -f $f && cp -a $f ${INSTALL_ROOT}${f}.kickstart
|
||||||
done
|
done
|
||||||
%end
|
%end
|
||||||
|
|
||||||
@@ -19,22 +19,22 @@ PK_PREFIX=`mktemp -d`
|
|||||||
mkdir -p $PK_PREFIX/etc/yum.repos.d
|
mkdir -p $PK_PREFIX/etc/yum.repos.d
|
||||||
if [ -f /etc/yum.repos.d/fedora.repo ] ; then
|
if [ -f /etc/yum.repos.d/fedora.repo ] ; then
|
||||||
cp /etc/yum.repos.d/fedora.repo $PK_PREFIX/etc/yum.repos.d/
|
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=https://kojipkgs.fedoraproject.org/compose/branched/latest-Fedora-/compose/Everything/$basearch/os/|' \
|
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
|
$PK_PREFIX/etc/yum.repos.d/fedora.repo
|
||||||
fi
|
fi
|
||||||
if [ -f /etc/yum.repos.d/fedora-updates.repo ] ; then
|
if [ -f /etc/yum.repos.d/fedora-updates.repo ] ; then
|
||||||
cp /etc/yum.repos.d/fedora-updates.repo $PK_PREFIX/etc/yum.repos.d/
|
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=https://kojipkgs.fedoraproject.org/mash/updates/f$releasever-updates/$basearch/|' \
|
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
|
$PK_PREFIX/etc/yum.repos.d/fedora-updates.repo
|
||||||
fi
|
fi
|
||||||
if [ -f /etc/yum.repos.d/fedora-updates-testing.repo ] ; then
|
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/
|
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=https://kojipkgs.fedoraproject.org/mash/updates/f$releasever-updates-testing/$basearch/|' \
|
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
|
$PK_PREFIX/etc/yum.repos.d/fedora-updates-testing.repo
|
||||||
fi
|
fi
|
||||||
if [ -f /etc/yum.repos.d/fedora-rawhide.repo ] ; then
|
if [ -f /etc/yum.repos.d/fedora-rawhide.repo ] ; then
|
||||||
cp /etc/yum.repos.d/fedora-rawhide.repo $PK_PREFIX/etc/yum.repos.d/
|
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=https://kojipkgs.fedoraproject.org/compose/rawhide/latest-Fedora-/compose/Everything/$basearch/os/|' \
|
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
|
$PK_PREFIX/etc/yum.repos.d/fedora-rawhide.repo
|
||||||
fi
|
fi
|
||||||
rpm --root=$PK_PREFIX --initdb
|
rpm --root=$PK_PREFIX --initdb
|
||||||
|
|||||||
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