mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-12-11 01:20:30 +08:00
Compare commits
31 Commits
arm-minima
...
f33
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e9eade1e56 | ||
|
|
c7036c7f02 | ||
|
|
9a45c1d0a0 | ||
|
|
73b5f6e27a | ||
|
|
fae2af88cf | ||
|
|
d9276e3a93 | ||
|
|
db40229faa | ||
|
|
6c5f35da4a | ||
|
|
fa909b7d41 | ||
|
|
0ce8f9bccd | ||
|
|
5dd3492422 | ||
|
|
b3e0d1cd64 | ||
|
|
449198ec60 | ||
|
|
c0a78d9941 | ||
|
|
b4956c0502 | ||
|
|
127cfff29b | ||
|
|
d8d2e8e2d8 | ||
|
|
2b7b36d5fc | ||
|
|
19322f31e0 | ||
|
|
ce6d9afead | ||
|
|
e4b784272b | ||
|
|
65794f7902 | ||
|
|
11732dafb1 | ||
|
|
3adfb2feec | ||
|
|
b206bbdfaf | ||
|
|
3a50547d86 | ||
|
|
6ffaaf0518 | ||
|
|
a15bea78df | ||
|
|
137ea2f289 | ||
|
|
0d0b2c7810 | ||
|
|
c7ba31e580 |
@@ -111,7 +111,7 @@ firefox
|
|||||||
|
|
||||||
# "EOF" is quoted so that variables are not expanded. Search for "here-document"
|
# "EOF" is quoted so that variables are not expanded. Search for "here-document"
|
||||||
# in man bash.
|
# in man bash.
|
||||||
cat >> /var/lib/livesys/livesys-session-extra << "EOF"
|
cat >> /etc/rc.d/init.d/livesys << "EOF"
|
||||||
|
|
||||||
# Create Test Day welcome screen
|
# Create Test Day welcome screen
|
||||||
# Note that shebang must be written this way, else it is considered as comment
|
# Note that shebang must be written this way, else it is considered as comment
|
||||||
|
|||||||
77
fedora-arm-base.ks
Normal file
77
fedora-arm-base.ks
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
#keyboard us
|
||||||
|
lang en_US.UTF-8
|
||||||
|
selinux --enforcing
|
||||||
|
firewall --enabled --service=mdns,ssh
|
||||||
|
|
||||||
|
bootloader --extlinux --location=mbr
|
||||||
|
|
||||||
|
part /boot/efi --size=80 --fstype vfat --asprimary
|
||||||
|
part /boot --size=512 --fstype ext4 --asprimary
|
||||||
|
|
||||||
|
# make sure that initial-setup runs and lets us do all the configuration bits
|
||||||
|
firstboot --reconfig
|
||||||
|
|
||||||
|
services --enabled=sshd,NetworkManager,avahi-daemon,chronyd,initial-setup
|
||||||
|
|
||||||
|
%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-armv8
|
||||||
|
rng-tools
|
||||||
|
chrony
|
||||||
|
extlinux-bootloader
|
||||||
|
bcm283x-firmware
|
||||||
|
initial-setup
|
||||||
|
initial-setup-gui
|
||||||
|
-iwl*
|
||||||
|
-ipw*
|
||||||
|
-usb_modeswitch
|
||||||
|
#lets resize / on first boot
|
||||||
|
# dracut-modules-growroot
|
||||||
|
|
||||||
|
# make sure all the locales are available for inital0-setup and anaconda to work
|
||||||
|
glibc-all-langpacks
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
# Setup Raspberry Pi firmware
|
||||||
|
cp -P /usr/share/uboot/rpi_2/u-boot.bin /boot/efi/rpi2-u-boot.bin
|
||||||
|
cp -P /usr/share/uboot/rpi_3_32b/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
||||||
|
cp -P /usr/share/uboot/rpi_4_32b/u-boot.bin /boot/efi/rpi4-u-boot.bin
|
||||||
|
|
||||||
|
# work around for poor key import UI in PackageKit
|
||||||
|
rm -f /var/lib/rpm/__db*
|
||||||
|
releasever=$(rpm --eval '%{fedora}')
|
||||||
|
basearch=armhfp
|
||||||
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||||
|
echo "Packages within this ARM disk image"
|
||||||
|
rpm -qa --qf '%{size}\t%{name}-%{version}-%{release}.%{arch}\n' |sort -rn
|
||||||
|
# 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
|
||||||
|
|
||||||
|
# Because memory is scarce resource in most arm systems we are differing from the Fedora
|
||||||
|
# default of having /tmp on tmpfs.
|
||||||
|
echo "Disabling tmpfs for /tmp."
|
||||||
|
systemctl mask tmp.mount
|
||||||
|
|
||||||
|
dnf -y remove dracut-config-generic
|
||||||
|
|
||||||
|
# Remove machine-id on pre generated images
|
||||||
|
rm -f /etc/machine-id
|
||||||
|
touch /etc/machine-id
|
||||||
|
|
||||||
|
%end
|
||||||
12
fedora-arm-kde.ks
Normal file
12
fedora-arm-kde.ks
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-kde-common.ks
|
||||||
|
|
||||||
|
part btrfs.007 --fstype="btrfs" --size=7000
|
||||||
|
btrfs none --label=fedora btrfs.007
|
||||||
|
btrfs /home --subvol --name=home LABEL=fedora
|
||||||
|
btrfs / --subvol --name=root LABEL=fedora
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
%end
|
||||||
12
fedora-arm-lxde.ks
Normal file
12
fedora-arm-lxde.ks
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-lxde-common.ks
|
||||||
|
|
||||||
|
part btrfs.007 --fstype="btrfs" --size=4300
|
||||||
|
btrfs none --label=fedora btrfs.007
|
||||||
|
btrfs /home --subvol --name=home LABEL=fedora
|
||||||
|
btrfs / --subvol --name=root LABEL=fedora
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
%end
|
||||||
17
fedora-arm-lxqt.ks
Normal file
17
fedora-arm-lxqt.ks
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-lxqt-common.ks
|
||||||
|
|
||||||
|
part btrfs.007 --fstype="btrfs" --size=4400
|
||||||
|
btrfs none --label=fedora btrfs.007
|
||||||
|
btrfs /home --subvol --name=home LABEL=fedora
|
||||||
|
btrfs / --subvol --name=root LABEL=fedora
|
||||||
|
|
||||||
|
%packages
|
||||||
|
# trojita not available on non-x86 platforms
|
||||||
|
-trojita
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
%end
|
||||||
12
fedora-arm-mate.ks
Normal file
12
fedora-arm-mate.ks
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-mate-common.ks
|
||||||
|
|
||||||
|
part btrfs.007 --fstype="btrfs" --size=7168
|
||||||
|
btrfs none --label=fedora btrfs.007
|
||||||
|
btrfs /home --subvol --name=home LABEL=fedora
|
||||||
|
btrfs / --subvol --name=root LABEL=fedora
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
%end
|
||||||
8
fedora-arm-minimal.ks
Normal file
8
fedora-arm-minimal.ks
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-minimal-common.ks
|
||||||
|
|
||||||
|
part / --size=1500 --fstype ext4
|
||||||
|
|
||||||
|
%packages
|
||||||
|
-xkeyboard-config
|
||||||
|
%end
|
||||||
30
fedora-arm-python-classroom.ks
Normal file
30
fedora-arm-python-classroom.ks
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# 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-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-workstation-common.ks
|
||||||
|
%include fedora-python-classroom-gnome-common.ks
|
||||||
|
|
||||||
|
part btrfs.007 --fstype="btrfs" --size=7000
|
||||||
|
btrfs none --label=fedora btrfs.007
|
||||||
|
btrfs /home --subvol --name=home LABEL=fedora
|
||||||
|
btrfs / --subvol --name=root LABEL=fedora
|
||||||
|
|
||||||
|
%packages
|
||||||
|
-initial-setup
|
||||||
|
-initial-setup-gui
|
||||||
|
-libvirt*
|
||||||
|
-gnome-boxes
|
||||||
|
|
||||||
|
%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
|
||||||
|
|
||||||
30
fedora-arm-server.ks
Normal file
30
fedora-arm-server.ks
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
|
||||||
|
# server defaults to xfs for / so lets do so on arm also
|
||||||
|
part / --size=2500 --fstype xfs
|
||||||
|
|
||||||
|
%packages
|
||||||
|
fedora-release-server
|
||||||
|
# install the default groups for the server environment since installing the environment is not working
|
||||||
|
@server-product
|
||||||
|
@standard
|
||||||
|
@headless-management
|
||||||
|
@hardware-support
|
||||||
|
@networkmanager-submodules
|
||||||
|
|
||||||
|
@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
|
||||||
|
|
||||||
12
fedora-arm-soas.ks
Normal file
12
fedora-arm-soas.ks
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-soas-common.ks
|
||||||
|
|
||||||
|
part btrfs.007 --fstype="btrfs" --size=3400
|
||||||
|
btrfs none --label=fedora btrfs.007
|
||||||
|
btrfs /home --subvol --name=home LABEL=fedora
|
||||||
|
btrfs / --subvol --name=root LABEL=fedora
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
%end
|
||||||
22
fedora-arm-workstation.ks
Normal file
22
fedora-arm-workstation.ks
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-workstation-common.ks
|
||||||
|
|
||||||
|
part btrfs.007 --fstype="btrfs" --size=6200
|
||||||
|
btrfs none --label=fedora btrfs.007
|
||||||
|
btrfs /home --subvol --name=home LABEL=fedora
|
||||||
|
btrfs / --subvol --name=root LABEL=fedora
|
||||||
|
|
||||||
|
%packages
|
||||||
|
-initial-setup
|
||||||
|
-initial-setup-gui
|
||||||
|
-libvirt*
|
||||||
|
-gnome-boxes
|
||||||
|
|
||||||
|
%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
|
||||||
17
fedora-arm-xbase.ks
Normal file
17
fedora-arm-xbase.ks
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
%packages
|
||||||
|
@base-x
|
||||||
|
@fonts
|
||||||
|
@input-methods
|
||||||
|
@multimedia
|
||||||
|
@printing
|
||||||
|
epiphany
|
||||||
|
%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
|
||||||
12
fedora-arm-xfce.ks
Normal file
12
fedora-arm-xfce.ks
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-xfce-common.ks
|
||||||
|
|
||||||
|
part btrfs.007 --fstype="btrfs" --size=5200
|
||||||
|
btrfs none --label=fedora btrfs.007
|
||||||
|
btrfs /home --subvol --name=home LABEL=fedora
|
||||||
|
btrfs / --subvol --name=root LABEL=fedora
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
%end
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
%packages
|
|
||||||
fedora-release-budgie
|
|
||||||
|
|
||||||
# Exclude unwanted groups that fedora-live-base.ks pulls in
|
|
||||||
-@dial-up
|
|
||||||
-@input-methods
|
|
||||||
-@standard
|
|
||||||
|
|
||||||
# Install budgie environment
|
|
||||||
@^budgie-desktop-environment
|
|
||||||
|
|
||||||
# recommended apps
|
|
||||||
@budgie-desktop-apps
|
|
||||||
|
|
||||||
# Exclude unwanted packages from @anaconda-tools group
|
|
||||||
-gfs2-utils
|
|
||||||
-reiserfs-utils
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -9,14 +9,13 @@
|
|||||||
%packages
|
%packages
|
||||||
|
|
||||||
fedora-release-cinnamon
|
fedora-release-cinnamon
|
||||||
|
@networkmanager-submodules
|
||||||
# install env-group to resolve RhBug:1891500
|
@cinnamon-desktop
|
||||||
@^cinnamon-desktop-environment
|
|
||||||
|
|
||||||
@libreoffice
|
@libreoffice
|
||||||
|
parole
|
||||||
rhythmbox
|
rhythmbox
|
||||||
|
|
||||||
# extra backgrounds
|
# extra backgrounds
|
||||||
f36-backgrounds-extras-gnome
|
f33-backgrounds-extras-gnome
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1,24 +0,0 @@
|
|||||||
# This is a basic Fedora cloud spin designed to work with Azure.
|
|
||||||
|
|
||||||
# Inherit from cloud base
|
|
||||||
%include fedora-cloud-base.ks
|
|
||||||
|
|
||||||
%packages
|
|
||||||
# Fedora Cloud Base includes the qemu guest agent and it is not
|
|
||||||
# required for Azure: https://pagure.io/cloud-sig/issue/319
|
|
||||||
-qemu-guest-agent
|
|
||||||
WALinuxAgent
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post --erroronfail
|
|
||||||
cat > /etc/ssh/sshd_config.d/50-client-alive-interval.conf << EOF
|
|
||||||
ClientAliveInterval 120
|
|
||||||
EOF
|
|
||||||
|
|
||||||
cat >> /etc/chrony.conf << EOF
|
|
||||||
|
|
||||||
# Azure's virtual time source:
|
|
||||||
# https://docs.microsoft.com/en-us/azure/virtual-machines/linux/time-sync#check-for-ptp-clock-source
|
|
||||||
refclock PHC /dev/ptp_hyperv poll 3 dpoll -2 offset 0
|
|
||||||
EOF
|
|
||||||
%end
|
|
||||||
@@ -9,20 +9,10 @@
|
|||||||
# Don't show bootloader as it's impossible for the user to get to it in time
|
# Don't show bootloader as it's impossible for the user to get to it in time
|
||||||
# So we might as well not waste the 1 second on each boot.
|
# So we might as well not waste the 1 second on each boot.
|
||||||
# https://cloud.google.com/compute/docs/import/import-existing-image
|
# https://cloud.google.com/compute/docs/import/import-existing-image
|
||||||
bootloader --timeout=0 --location=mbr --append="no_timer_check net.ifnames=0 console=ttyS0,38400n8d"
|
bootloader --timeout=0 --append="no_timer_check net.ifnames=0 console=ttyS0,38400n8d"
|
||||||
|
|
||||||
# redefine `services` here to drop cloud-init systemd unit enablements from
|
#%packages
|
||||||
# fedora-cloud-base.ks since we don't use them.
|
#%end
|
||||||
services --enabled=sshd
|
|
||||||
|
|
||||||
%packages
|
|
||||||
# GCP provides its own guest environment.
|
|
||||||
google-compute-engine-guest-configs
|
|
||||||
-cloud-init
|
|
||||||
# Fedora Cloud Base includes the qemu guest agent. GCP prefers
|
|
||||||
# that it not be installed https://pagure.io/cloud-sig/issue/319
|
|
||||||
-qemu-guest-agent
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post --erroronfail
|
%post --erroronfail
|
||||||
cat <<EOF > /etc/NetworkManager/conf.d/gcp-mtu.conf
|
cat <<EOF > /etc/NetworkManager/conf.d/gcp-mtu.conf
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ rootpw vagrant
|
|||||||
# even on VirtualBox virt, we get a primary network device with "eth0" as the name
|
# even on VirtualBox virt, we get a primary network device with "eth0" as the name
|
||||||
# This simplifies things and allows a single disk image for both supported Vagrant
|
# This simplifies things and allows a single disk image for both supported Vagrant
|
||||||
# platforms (virtualbox and kvm)
|
# platforms (virtualbox and kvm)
|
||||||
bootloader --timeout=1 --location=mbr --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"
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
# The default koji Vagrantfile configuration uses rsync to sync files between
|
# The default koji Vagrantfile configuration uses rsync to sync files between
|
||||||
|
|||||||
@@ -32,20 +32,13 @@ rootpw --lock --iscrypted locked
|
|||||||
firewall --disabled
|
firewall --disabled
|
||||||
|
|
||||||
# We pass net.ifnames=0 because we always want to use eth0 here on all the cloud images.
|
# We pass net.ifnames=0 because we always want to use eth0 here on all the cloud images.
|
||||||
bootloader --timeout=1 --location=mbr --append="no_timer_check net.ifnames=0 console=tty1 console=ttyS0,115200n8"
|
bootloader --timeout=1 --append="no_timer_check net.ifnames=0 console=tty1 console=ttyS0,115200n8"
|
||||||
|
|
||||||
services --enabled=sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
|
services --enabled=sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
|
|
||||||
# Configure for gpt with bios+uefi
|
zerombr
|
||||||
clearpart --all --initlabel --disklabel=gpt
|
clearpart --all
|
||||||
part prepboot --size=4 --fstype=prepboot
|
autopart --noboot --nohome --noswap --nolvm
|
||||||
part biosboot --size=1 --fstype=biosboot
|
|
||||||
part /boot/efi --size=100 --fstype=efi
|
|
||||||
part /boot --size=1000 --fstype=ext4 --label=boot
|
|
||||||
part btrfs.007 --size=2000 --fstype=btrfs --grow
|
|
||||||
btrfs none --label=fedora btrfs.007
|
|
||||||
btrfs /home --subvol --name=home LABEL=fedora
|
|
||||||
btrfs / --subvol --name=root LABEL=fedora
|
|
||||||
|
|
||||||
%include fedora-repo.ks
|
%include fedora-repo.ks
|
||||||
|
|
||||||
@@ -74,15 +67,12 @@ kernel-core
|
|||||||
# rhgb/quiet on kernel command line
|
# rhgb/quiet on kernel command line
|
||||||
-plymouth
|
-plymouth
|
||||||
|
|
||||||
# Install qemu-guest-agent https://pagure.io/cloud-sig/issue/319 To
|
|
||||||
# improve the integration with OpenStack and other VM management
|
|
||||||
# systems (oVirt, KubeVirt).
|
|
||||||
qemu-guest-agent
|
|
||||||
|
|
||||||
|
|
||||||
# No need for firewalld for now. We don't have a firewall on by default.
|
# No need for firewalld for now. We don't have a firewall on by default.
|
||||||
-firewalld
|
-firewalld
|
||||||
|
|
||||||
|
# noswap on Cloud for now
|
||||||
|
-zram-generator-defaults
|
||||||
|
|
||||||
# Don't include the geolite2 databases, which end up with 66MiB
|
# Don't include the geolite2 databases, which end up with 66MiB
|
||||||
# in /usr/share/GeoIP
|
# in /usr/share/GeoIP
|
||||||
-geolite2-country
|
-geolite2-country
|
||||||
@@ -94,15 +84,6 @@ qemu-guest-agent
|
|||||||
##### begin kickstart post ###########################################
|
##### begin kickstart post ###########################################
|
||||||
%post --erroronfail
|
%post --erroronfail
|
||||||
|
|
||||||
if [ "$(arch)" = "x86_64" ]; then
|
|
||||||
# Set up legacy BIOS boot if we booted from UEFI
|
|
||||||
grub2-install --target=i386-pc /dev/vda
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Blivet sets pmbr_boot flag erroneously and we need to purge it
|
|
||||||
# otherwise it'll fail to boot
|
|
||||||
parted /dev/vda disk_set pmbr_boot off
|
|
||||||
|
|
||||||
# linux-firmware is installed by default and is quite large. As of mid 2020:
|
# linux-firmware is installed by default and is quite large. As of mid 2020:
|
||||||
# Total download size: 97 M
|
# Total download size: 97 M
|
||||||
# Installed size: 268 M
|
# Installed size: 268 M
|
||||||
@@ -123,27 +104,16 @@ basearch=$(uname -i)
|
|||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||||
|
|
||||||
echo "Zeroing out empty space."
|
echo "Zeroing out empty space."
|
||||||
# Create zeros file with nodatacow and no compression
|
|
||||||
touch /var/tmp/zeros
|
|
||||||
chattr +C /var/tmp/zeros
|
|
||||||
# This forces the filesystem to reclaim space from deleted files
|
# This forces the filesystem to reclaim space from deleted files
|
||||||
dd bs=1M if=/dev/zero of=/var/tmp/zeros || :
|
dd bs=1M if=/dev/zero of=/var/tmp/zeros || :
|
||||||
echo "(Don't worry -- that out-of-space error was expected.)"
|
|
||||||
# Force sync to disk (Cf. https://pagure.io/cloud-sig/issue/340#comment-743430)
|
|
||||||
btrfs filesystem sync /
|
|
||||||
rm -f /var/tmp/zeros
|
rm -f /var/tmp/zeros
|
||||||
btrfs filesystem sync /
|
echo "(Don't worry -- that out-of-space error was expected.)"
|
||||||
|
|
||||||
# When we build the image a networking config file gets left behind.
|
# When we build the image a networking config file gets left behind.
|
||||||
# Let's clean it up.
|
# Let's clean it up.
|
||||||
echo "Cleanup leftover networking configuration"
|
echo "Cleanup leftover networking configuration"
|
||||||
rm -f /etc/NetworkManager/system-connections/*.nmconnection
|
rm -f /etc/NetworkManager/system-connections/*.nmconnection
|
||||||
|
|
||||||
# Truncate the /etc/resolv.conf left over from NetworkManager during the
|
|
||||||
# kickstart. This causes delays in boot with cloud-init because the
|
|
||||||
# 192.168.122.1 DNS server cannot be reached.
|
|
||||||
truncate -s 0 /etc/resolv.conf
|
|
||||||
|
|
||||||
# Clear machine-id on pre generated images
|
# Clear machine-id on pre generated images
|
||||||
truncate -s 0 /etc/machine-id
|
truncate -s 0 /etc/machine-id
|
||||||
|
|
||||||
|
|||||||
@@ -1,29 +1,48 @@
|
|||||||
# Description: Packages for the NeuroFedora computational neuroscience lab image.
|
# Description: Packages for the NeuroFedora computational neuroscience lab image.
|
||||||
#
|
#
|
||||||
# Maintained by the NeuroFedora SIG:
|
# Maintained by the NeuroFedora SIG:
|
||||||
# https://neuro.fedoraproject.org
|
# https://fedoraproject.org/wiki/SIGs/NeuroFedora
|
||||||
# mailto:neuro-sig@lists.fedoraproject.org
|
# mailto:neuro-sig@lists.fedoraproject.org
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
fedora-release-compneuro
|
|
||||||
# Includes numpy, scipy, jupyter, pandas, scikit, scipy, statsmodels, sympy, matplotlib
|
# Includes numpy, scipy, jupyter, pandas, scikit, scipy, statsmodels, sympy, matplotlib
|
||||||
@python-science
|
@python-science
|
||||||
|
|
||||||
|
# Add julia and R
|
||||||
|
R
|
||||||
|
julia
|
||||||
|
|
||||||
#Computational neuroscience packages
|
#Computational neuroscience packages
|
||||||
arbor
|
arbor
|
||||||
|
auryn-mpich
|
||||||
|
auryn-openmpi
|
||||||
|
bionetgen
|
||||||
|
calcium-calculator
|
||||||
|
COPASI
|
||||||
|
qalculate
|
||||||
|
getdp
|
||||||
genesis-simulator
|
genesis-simulator
|
||||||
|
gnuplot
|
||||||
moose
|
moose
|
||||||
nest
|
nest
|
||||||
neuron
|
neuron
|
||||||
neuron-devel
|
octave
|
||||||
|
# paraview
|
||||||
python3
|
python3
|
||||||
python3-brian2
|
python3-brian2
|
||||||
|
python-brian2-doc
|
||||||
python3-ipython
|
python3-ipython
|
||||||
python3-lfpy
|
|
||||||
python3-nest
|
python3-nest
|
||||||
python3-netpyne
|
|
||||||
python3-neuron
|
python3-neuron
|
||||||
python3-pynn
|
python3-libNeuroML
|
||||||
|
python3-neo
|
||||||
|
# Currently broken in rawhide
|
||||||
|
# python3-nineml
|
||||||
|
# python-nineml-doc
|
||||||
|
python3-PyLEMS
|
||||||
|
python-PyLEMS-doc
|
||||||
python3-steps
|
python3-steps
|
||||||
|
smoldyn
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -11,8 +11,10 @@ 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
|
||||||
sudo
|
sudo
|
||||||
-glibc-langpack-en
|
-glibc-langpack-en
|
||||||
|
-cracklib-dicts
|
||||||
-langpacks-en
|
-langpacks-en
|
||||||
%end
|
%end
|
||||||
|
|
||||||
@@ -37,7 +39,7 @@ printf "tsflags=nodocs\n" >>/etc/dnf/dnf.conf
|
|||||||
# [/usr/lib/tmpfiles.d/systemd.conf:26] Failed to replace specifiers: /run/log/journal/%m
|
# [/usr/lib/tmpfiles.d/systemd.conf:26] Failed to replace specifiers: /run/log/journal/%m
|
||||||
#
|
#
|
||||||
umount /run
|
umount /run
|
||||||
rm -f /run/nologin # https://pagure.io/atomic-wg/issue/316
|
rm /run/nologin # https://pagure.io/atomic-wg/issue/316
|
||||||
|
|
||||||
# Final pruning
|
# Final pruning
|
||||||
rm -rfv /var/cache/* /var/log/* /tmp/*
|
rm -rfv /var/cache/* /var/log/* /tmp/*
|
||||||
|
|||||||
@@ -18,8 +18,7 @@
|
|||||||
|
|
||||||
text # don't use cmdline -- https://github.com/rhinstaller/anaconda/issues/931
|
text # don't use cmdline -- https://github.com/rhinstaller/anaconda/issues/931
|
||||||
bootloader --disabled
|
bootloader --disabled
|
||||||
timezone --isUtc Etc/UTC
|
timezone --isUtc --nontp Etc/UTC
|
||||||
timesource --ntp-disable
|
|
||||||
rootpw --lock --iscrypted locked
|
rootpw --lock --iscrypted locked
|
||||||
keyboard us
|
keyboard us
|
||||||
network --bootproto=dhcp --device=link --activate --onboot=on
|
network --bootproto=dhcp --device=link --activate --onboot=on
|
||||||
@@ -36,7 +35,9 @@ bash
|
|||||||
coreutils
|
coreutils
|
||||||
glibc-minimal-langpack
|
glibc-minimal-langpack
|
||||||
rpm
|
rpm
|
||||||
util-linux-core
|
shadow-utils
|
||||||
|
sssd-client
|
||||||
|
util-linux
|
||||||
-kernel
|
-kernel
|
||||||
-dosfstools
|
-dosfstools
|
||||||
-e2fsprogs
|
-e2fsprogs
|
||||||
@@ -48,10 +49,6 @@ util-linux-core
|
|||||||
-trousers
|
-trousers
|
||||||
-xkeyboard-config
|
-xkeyboard-config
|
||||||
-grubby
|
-grubby
|
||||||
-langpacks-en_GB
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1951111
|
|
||||||
-util-linux
|
|
||||||
-sssd-client
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
@@ -68,13 +65,7 @@ echo 'LANG="C.UTF-8"' > /etc/locale.conf
|
|||||||
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1400682
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1400682
|
||||||
echo "Import RPM GPG key"
|
echo "Import RPM GPG key"
|
||||||
releasever=$(rpm --eval '%{?fedora}')
|
releasever=$(rpm --eval '%{fedora}')
|
||||||
|
|
||||||
# When building ELN containers, we don't have the %{fedora} macro
|
|
||||||
if [ -z $releasever ]; then
|
|
||||||
releasever=eln
|
|
||||||
fi
|
|
||||||
|
|
||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-primary
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-primary
|
||||||
|
|
||||||
echo "# fstab intentionally empty for containers" > /etc/fstab
|
echo "# fstab intentionally empty for containers" > /etc/fstab
|
||||||
@@ -83,6 +74,4 @@ echo "# fstab intentionally empty for containers" > /etc/fstab
|
|||||||
rm -f /etc/machine-id
|
rm -f /etc/machine-id
|
||||||
touch /etc/machine-id
|
touch /etc/machine-id
|
||||||
|
|
||||||
echo "# resolv placeholder" > /etc/resolv.conf
|
|
||||||
chmod 644 /etc/resolv.conf
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1,31 +0,0 @@
|
|||||||
%packages
|
|
||||||
# Switch to groups for design suite
|
|
||||||
@design-suite
|
|
||||||
|
|
||||||
# Identify as Fedora Design Suite
|
|
||||||
fedora-release-designsuite
|
|
||||||
|
|
||||||
# Provides backup application
|
|
||||||
deja-dup
|
|
||||||
deja-dup-nautilus
|
|
||||||
|
|
||||||
# Add extra gnome applications
|
|
||||||
#gnome-books
|
|
||||||
gnome-calendar
|
|
||||||
gnome-photos
|
|
||||||
gnome-pomodoro
|
|
||||||
gnome-todo
|
|
||||||
|
|
||||||
# Add cosmetic for terminal
|
|
||||||
powerline
|
|
||||||
powerline-fonts
|
|
||||||
|
|
||||||
# removal of unneeded applications
|
|
||||||
-gnome-boxes
|
|
||||||
|
|
||||||
|
|
||||||
# temporarily removing conflicting application
|
|
||||||
-mypaint
|
|
||||||
-sparkleshare
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -34,13 +34,12 @@ firstboot --reconfig
|
|||||||
@hardware-support
|
@hardware-support
|
||||||
|
|
||||||
kernel
|
kernel
|
||||||
# on 32bit arm make sure we only install one kernel
|
|
||||||
-kernel-lpae
|
|
||||||
# remove this in %post
|
# remove this in %post
|
||||||
dracut-config-generic
|
dracut-config-generic
|
||||||
-dracut-config-rescue
|
-dracut-config-rescue
|
||||||
# install tools needed to manage and boot arm systems
|
# install tools needed to manage and boot arm systems
|
||||||
@arm-tools
|
@arm-tools
|
||||||
|
rng-tools
|
||||||
chrony
|
chrony
|
||||||
bcm283x-firmware
|
bcm283x-firmware
|
||||||
initial-setup
|
initial-setup
|
||||||
@@ -65,7 +64,6 @@ if [[ $arch == "aarch64" ]] || [[ $arch == "armv7l" ]]; then
|
|||||||
if [[ $arch == "aarch64" ]]; then
|
if [[ $arch == "aarch64" ]]; then
|
||||||
cp -P /usr/share/uboot/rpi_3/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
cp -P /usr/share/uboot/rpi_3/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
||||||
cp -P /usr/share/uboot/rpi_4/u-boot.bin /boot/efi/rpi4-u-boot.bin
|
cp -P /usr/share/uboot/rpi_4/u-boot.bin /boot/efi/rpi4-u-boot.bin
|
||||||
cp -P /usr/share/uboot/rpi_arm64/u-boot.bin /boot/efi/rpi-u-boot.bin
|
|
||||||
else
|
else
|
||||||
cp -P /usr/share/uboot/rpi_2/u-boot.bin /boot/efi/rpi2-u-boot.bin
|
cp -P /usr/share/uboot/rpi_2/u-boot.bin /boot/efi/rpi2-u-boot.bin
|
||||||
cp -P /usr/share/uboot/rpi_3_32b/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
cp -P /usr/share/uboot/rpi_3_32b/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
||||||
@@ -77,28 +75,23 @@ releasever=$(rpm --eval '%{fedora}')
|
|||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-primary
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-primary
|
||||||
echo "Packages within this disk image"
|
echo "Packages within this disk image"
|
||||||
rpm -qa --qf '%{size}\t%{name}-%{version}-%{release}.%{arch}\n' |sort -rn
|
rpm -qa --qf '%{size}\t%{name}-%{version}-%{release}.%{arch}\n' |sort -rn
|
||||||
|
# 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
|
# remove random seed, the newly installed instance should make it's own
|
||||||
rm -f /var/lib/systemd/random-seed
|
rm -f /var/lib/systemd/random-seed
|
||||||
|
|
||||||
# The enp1s0 interface is a left over from the imagefactory install, clean this up
|
# The enp1s0 interface is a left over from the imagefactory install, clean this up
|
||||||
rm -f /etc/NetworkManager/system-connections/*.nmconnection
|
rm -f /etc/sysconfig/network-scripts/ifcfg-enp1s0
|
||||||
|
|
||||||
dnf -y remove dracut-config-generic
|
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
|
# Remove machine-id on pre generated images
|
||||||
rm -f /etc/machine-id
|
rm -f /etc/machine-id
|
||||||
touch /etc/machine-id
|
touch /etc/machine-id
|
||||||
|
|
||||||
# Note that running rpm recreates the rpm db files which aren't needed or wanted
|
|
||||||
rm -f /var/lib/rpm/__db*
|
|
||||||
|
|
||||||
# Anaconda adds console=tty0 to the grub boot line on all images. this is problematic
|
|
||||||
# when you are using fedora via serial console as you do not get any output post grub
|
|
||||||
# linux does a good job of knowing what consoles need to be enabled.
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=2022757
|
|
||||||
if [[ $arch == "aarch64" ]] || [[ $arch == "armv7l" ]]; then
|
|
||||||
sed -i -e 's|console=tty0||g' /boot/loader/entries/*conf
|
|
||||||
fi
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
%include fedora-disk-base.ks
|
|
||||||
%include fedora-disk-xbase.ks
|
|
||||||
%include fedora-budgie-common.ks
|
|
||||||
|
|
||||||
autopart --type=btrfs --noswap
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
%include fedora-disk-base.ks
|
|
||||||
%include fedora-disk-xbase.ks
|
|
||||||
%include fedora-kde-common.ks
|
|
||||||
|
|
||||||
autopart --type=btrfs --noswap
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
%include fedora-disk-base.ks
|
|
||||||
%include fedora-disk-xbase.ks
|
|
||||||
%include fedora-lxqt-common.ks
|
|
||||||
|
|
||||||
autopart --type=btrfs --noswap
|
|
||||||
@@ -4,3 +4,7 @@
|
|||||||
services --enabled=sshd,NetworkManager,chronyd,initial-setup
|
services --enabled=sshd,NetworkManager,chronyd,initial-setup
|
||||||
|
|
||||||
autopart --type=plain --noswap
|
autopart --type=plain --noswap
|
||||||
|
|
||||||
|
%packages
|
||||||
|
-xkeyboard-config
|
||||||
|
%end
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
%include fedora-disk-base.ks
|
|
||||||
%include fedora-disk-xbase.ks
|
|
||||||
%include fedora-phosh-common.ks
|
|
||||||
|
|
||||||
autopart --type=btrfs --noswap
|
|
||||||
@@ -1,20 +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-disk-base.ks
|
|
||||||
%include fedora-disk-xbase.ks
|
|
||||||
%include fedora-workstation-common.ks
|
|
||||||
%include fedora-python-classroom-gnome-common.ks
|
|
||||||
|
|
||||||
autopart --type=btrfs --noswap
|
|
||||||
|
|
||||||
%packages
|
|
||||||
-initial-setup
|
|
||||||
-initial-setup-gui
|
|
||||||
-libvirt*
|
|
||||||
-gnome-boxes
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
%include fedora-disk-base.ks
|
|
||||||
%include fedora-disk-xbase.ks
|
|
||||||
%include fedora-soas-common.ks
|
|
||||||
|
|
||||||
autopart --type=btrfs --noswap
|
|
||||||
@@ -2,6 +2,10 @@
|
|||||||
%include fedora-disk-xbase.ks
|
%include fedora-disk-xbase.ks
|
||||||
%include fedora-workstation-common.ks
|
%include fedora-workstation-common.ks
|
||||||
|
|
||||||
|
bootloader --append="cma=256MB"
|
||||||
|
|
||||||
|
services --enabled=sshd,NetworkManager,chronyd
|
||||||
|
|
||||||
autopart --type=btrfs --noswap
|
autopart --type=btrfs --noswap
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
@@ -9,3 +13,7 @@ autopart --type=btrfs --noswap
|
|||||||
-initial-setup-gui
|
-initial-setup-gui
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
%end
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
@multimedia
|
@multimedia
|
||||||
@printing
|
@printing
|
||||||
-@guest-desktop-agents
|
-@guest-desktop-agents
|
||||||
initial-setup-gui
|
|
||||||
|
|
||||||
# Need aajohan-comfortaa-fonts for the SVG rnotes images
|
# Need aajohan-comfortaa-fonts for the SVG rnotes images
|
||||||
aajohan-comfortaa-fonts
|
aajohan-comfortaa-fonts
|
||||||
|
|||||||
@@ -2,4 +2,16 @@
|
|||||||
%include fedora-disk-xbase.ks
|
%include fedora-disk-xbase.ks
|
||||||
%include fedora-xfce-common.ks
|
%include fedora-xfce-common.ks
|
||||||
|
|
||||||
|
bootloader --append="cma=192MB"
|
||||||
|
|
||||||
|
services --enabled=sshd,NetworkManager,chronyd
|
||||||
|
|
||||||
autopart --type=btrfs --noswap
|
autopart --type=btrfs --noswap
|
||||||
|
|
||||||
|
%packages
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
%end
|
||||||
|
|||||||
@@ -1,60 +0,0 @@
|
|||||||
# See fedora-container-common.ks for details on how to hack on container image kickstarts
|
|
||||||
# This base is a standard Fedora-ELN image with python3 and dnf
|
|
||||||
|
|
||||||
%include fedora-container-common.ks
|
|
||||||
|
|
||||||
%packages --excludedocs --instLangs=en --nocore --excludeWeakdeps
|
|
||||||
-fedora-release-container
|
|
||||||
fedora-release-eln
|
|
||||||
fedora-repos-eln
|
|
||||||
rootfiles
|
|
||||||
tar # https://bugzilla.redhat.com/show_bug.cgi?id=1409920
|
|
||||||
vim-minimal
|
|
||||||
dnf
|
|
||||||
dnf-yum # https://fedorahosted.org/fesco/ticket/1312#comment:29
|
|
||||||
sudo
|
|
||||||
-glibc-langpack-en
|
|
||||||
-langpacks-en
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post --erroronfail --log=/root/anaconda-post.log
|
|
||||||
set -eux
|
|
||||||
|
|
||||||
# remove some extraneous files
|
|
||||||
rm -rf /var/cache/dnf/*
|
|
||||||
rm -rf /tmp/*
|
|
||||||
|
|
||||||
# https://pagure.io/atomic-wg/issue/308
|
|
||||||
printf "tsflags=nodocs\n" >>/etc/dnf/dnf.conf
|
|
||||||
|
|
||||||
|
|
||||||
# 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
|
|
||||||
#
|
|
||||||
# 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
|
|
||||||
rm -f /run/nologin # https://pagure.io/atomic-wg/issue/316
|
|
||||||
|
|
||||||
# Final pruning
|
|
||||||
rm -rfv /var/cache/* /var/log/* /tmp/*
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post --nochroot --erroronfail --log=/mnt/sysimage/root/anaconda-post-nochroot.log
|
|
||||||
set -eux
|
|
||||||
|
|
||||||
# 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,243 +0,0 @@
|
|||||||
# Kickstart file to build Fedora ELN Guest image.
|
|
||||||
# This image is used to test Fedora ELN content for
|
|
||||||
# the cloud instances. This image provides minimally configured
|
|
||||||
# system image.
|
|
||||||
|
|
||||||
text
|
|
||||||
lang en_US.UTF-8
|
|
||||||
keyboard us
|
|
||||||
timezone --utc America/New_York
|
|
||||||
# add console and reorder in %post
|
|
||||||
bootloader --timeout=1 --location=mbr --append="console=ttyS0,115200n8 no_timer_check crashkernel=auto net.ifnames=0"
|
|
||||||
selinux --enforcing
|
|
||||||
firewall --enabled --service=ssh
|
|
||||||
network --bootproto=dhcp --device=link --activate --onboot=on
|
|
||||||
#services --enabled=sshd,ovirt-guest-agent --disabled kdump,rhsmcertd
|
|
||||||
services --enabled=sshd,NetworkManager,cloud-init,cloud-init-local,cloud-config,cloud-final --disabled kdump,rhsmcertd
|
|
||||||
rootpw --iscrypted nope
|
|
||||||
|
|
||||||
#
|
|
||||||
# Partition Information. Change this as necessary
|
|
||||||
# This information is used by appliance-tools but
|
|
||||||
# not by the livecd tools.
|
|
||||||
#
|
|
||||||
zerombr
|
|
||||||
clearpart --all --initlabel
|
|
||||||
# autopart --type=plain --nohome # --nohome doesn't work because of rhbz#1509350
|
|
||||||
# autopart is problematic in that it creates /boot and swap partitions rhbz#1542510 rhbz#1673094
|
|
||||||
reqpart
|
|
||||||
part / --fstype="xfs" --ondisk=vda --size=8000
|
|
||||||
reboot
|
|
||||||
|
|
||||||
# Packages
|
|
||||||
%packages
|
|
||||||
@core
|
|
||||||
dnf
|
|
||||||
kernel
|
|
||||||
yum
|
|
||||||
nfs-utils
|
|
||||||
dnf-utils
|
|
||||||
|
|
||||||
# pull firmware packages out
|
|
||||||
-aic94xx-firmware
|
|
||||||
-alsa-firmware
|
|
||||||
-alsa-lib
|
|
||||||
-alsa-tools-firmware
|
|
||||||
-ivtv-firmware
|
|
||||||
-iwl1000-firmware
|
|
||||||
-iwl100-firmware
|
|
||||||
-iwl105-firmware
|
|
||||||
-iwl135-firmware
|
|
||||||
-iwl2000-firmware
|
|
||||||
-iwl2030-firmware
|
|
||||||
-iwl3160-firmware
|
|
||||||
-iwl3945-firmware
|
|
||||||
-iwl4965-firmware
|
|
||||||
-iwl5000-firmware
|
|
||||||
-iwl5150-firmware
|
|
||||||
-iwl6000-firmware
|
|
||||||
-iwl6000g2a-firmware
|
|
||||||
-iwl6000g2b-firmware
|
|
||||||
-iwl6050-firmware
|
|
||||||
-iwl7260-firmware
|
|
||||||
-libertas-sd8686-firmware
|
|
||||||
-libertas-sd8787-firmware
|
|
||||||
-libertas-usb8388-firmware
|
|
||||||
|
|
||||||
# cloud-init does magical things with EC2 metadata, including provisioning
|
|
||||||
# a user account with ssh keys.
|
|
||||||
cloud-init
|
|
||||||
## Adding a dependency for cloud-init as recommended by tdawson
|
|
||||||
python3-jsonschema
|
|
||||||
|
|
||||||
# rhevm guest-agent (Not available in ELN yet)
|
|
||||||
#rhevm-guest-agent-common
|
|
||||||
|
|
||||||
# allows the host machine to issue commands to the guest operating system
|
|
||||||
qemu-guest-agent
|
|
||||||
|
|
||||||
# need this for growpart, because parted doesn't yet support resizepart
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=966993
|
|
||||||
#cloud-utils
|
|
||||||
|
|
||||||
#heat-cfntools # Not available in ELN (yet?)
|
|
||||||
|
|
||||||
cloud-utils-growpart
|
|
||||||
# We need this image to be portable; also, rescue mode isn't useful here.
|
|
||||||
dracut-config-generic
|
|
||||||
|
|
||||||
# Don't include dracut-config-rescue. It will have dracut generate a
|
|
||||||
# "rescue" entry in the grub menu, but that also means there is a
|
|
||||||
# rescue kernel and initramfs that get created, which (currently) add
|
|
||||||
# about another 40MiB to the /boot/ partition. Also the "rescue" mode
|
|
||||||
# is generally not useful in the cloud.
|
|
||||||
-dracut-config-rescue
|
|
||||||
|
|
||||||
# Needed initially, but removed below.
|
|
||||||
firewalld
|
|
||||||
|
|
||||||
# cherry-pick a few things from @base
|
|
||||||
tar
|
|
||||||
tcpdump
|
|
||||||
rsync
|
|
||||||
|
|
||||||
# Some things from @core we can do without in a minimal install
|
|
||||||
-biosdevname
|
|
||||||
-plymouth
|
|
||||||
-iprutils
|
|
||||||
|
|
||||||
# Minimal Cockpit web console
|
|
||||||
cockpit-ws
|
|
||||||
cockpit-system
|
|
||||||
subscription-manager-cockpit
|
|
||||||
|
|
||||||
# rh-amazon-rhui-client
|
|
||||||
|
|
||||||
# Exclude all langpacks for now
|
|
||||||
-langpacks-*
|
|
||||||
|
|
||||||
# The langpacks-en package is pulled in by Anaconda and it seems filtering
|
|
||||||
# it out using langpacks-* is not sufficient. It needs to be filtered
|
|
||||||
# directly.
|
|
||||||
-langpacks-en
|
|
||||||
|
|
||||||
# We are building Fedora-ELN
|
|
||||||
fedora-release-eln
|
|
||||||
fedora-repos-eln
|
|
||||||
|
|
||||||
# Add rng-tools as source of entropy
|
|
||||||
rng-tools
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
#
|
|
||||||
# Add custom post scripts after the base post.
|
|
||||||
#
|
|
||||||
%post --erroronfail
|
|
||||||
|
|
||||||
# workaround anaconda requirements
|
|
||||||
passwd -d root
|
|
||||||
passwd -l root
|
|
||||||
|
|
||||||
# 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 .
|
|
||||||
|
|
||||||
# this is installed by default but we don't need it in virt
|
|
||||||
echo "Removing linux-firmware package."
|
|
||||||
dnf -C -y remove linux-firmware
|
|
||||||
|
|
||||||
# Remove firewalld; it is required to be present for install/image building.
|
|
||||||
echo "Removing firewalld."
|
|
||||||
dnf -C -y remove firewalld --setopt="clean_requirements_on_remove=1"
|
|
||||||
|
|
||||||
echo -n "Getty fixes"
|
|
||||||
# although we want console output going to the serial console, we don't
|
|
||||||
# actually have the opportunity to login there. FIX.
|
|
||||||
# we don't really need to auto-spawn _any_ gettys.
|
|
||||||
sed -i '/^#NAutoVTs=.*/ a\
|
|
||||||
NAutoVTs=0' /etc/systemd/logind.conf
|
|
||||||
|
|
||||||
# For cloud images, 'eth0' _is_ the predictable device name, since
|
|
||||||
# we don't want to be tied to specific virtual (!) hardware
|
|
||||||
rm -f /etc/udev/rules.d/70*
|
|
||||||
ln -s /dev/null /etc/udev/rules.d/80-net-name-slot.rules
|
|
||||||
rm -f /etc/NetworkManager/system-connections/*.nmconnection
|
|
||||||
# simple eth0 config, again not hard-coded to the build hardware
|
|
||||||
cat > /etc/sysconfig/network-scripts/ifcfg-eth0 << EOF
|
|
||||||
DEVICE="eth0"
|
|
||||||
BOOTPROTO="dhcp"
|
|
||||||
BOOTPROTOv6="dhcp"
|
|
||||||
ONBOOT="yes"
|
|
||||||
TYPE="Ethernet"
|
|
||||||
USERCTL="yes"
|
|
||||||
PEERDNS="yes"
|
|
||||||
IPV6INIT="yes"
|
|
||||||
PERSISTENT_DHCLIENT="1"
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# set virtual-guest as default profile for tuned
|
|
||||||
echo "virtual-guest" > /etc/tuned/active_profile
|
|
||||||
|
|
||||||
# generic localhost names
|
|
||||||
cat > /etc/hosts << EOF
|
|
||||||
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
|
|
||||||
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
|
|
||||||
|
|
||||||
EOF
|
|
||||||
echo .
|
|
||||||
|
|
||||||
cat <<EOL > /etc/sysconfig/kernel
|
|
||||||
# UPDATEDEFAULT specifies if new-kernel-pkg should make
|
|
||||||
# new kernels the default
|
|
||||||
UPDATEDEFAULT=yes
|
|
||||||
|
|
||||||
# DEFAULTKERNEL specifies the default kernel package type
|
|
||||||
DEFAULTKERNEL=kernel
|
|
||||||
EOL
|
|
||||||
|
|
||||||
# make sure firstboot doesn't start
|
|
||||||
echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
|
|
||||||
|
|
||||||
# workaround https://bugzilla.redhat.com/show_bug.cgi?id=966888
|
|
||||||
if ! grep -q growpart /etc/cloud/cloud.cfg; then
|
|
||||||
sed -i 's/ - resizefs/ - growpart\n - resizefs/' /etc/cloud/cloud.cfg
|
|
||||||
fi
|
|
||||||
|
|
||||||
# allow sudo powers to cloud-user
|
|
||||||
echo -e 'cloud-user\tALL=(ALL)\tNOPASSWD: ALL' >> /etc/sudoers
|
|
||||||
|
|
||||||
# Disable subscription-manager yum plugins
|
|
||||||
sed -i 's|^enabled=1|enabled=0|' /etc/yum/pluginconf.d/product-id.conf
|
|
||||||
sed -i 's|^enabled=1|enabled=0|' /etc/yum/pluginconf.d/subscription-manager.conf
|
|
||||||
|
|
||||||
echo "Cleaning old yum repodata."
|
|
||||||
dnf clean all
|
|
||||||
|
|
||||||
# clean up installation logs"
|
|
||||||
rm -rf /var/log/yum.log
|
|
||||||
rm -rf /var/lib/yum/*
|
|
||||||
rm -rf /root/install.log
|
|
||||||
rm -rf /root/install.log.syslog
|
|
||||||
rm -rf /root/anaconda-ks.cfg
|
|
||||||
rm -rf /var/log/anaconda*
|
|
||||||
|
|
||||||
echo "Fixing SELinux contexts."
|
|
||||||
touch /var/log/cron
|
|
||||||
touch /var/log/boot.log
|
|
||||||
mkdir -p /var/cache/yum
|
|
||||||
/usr/sbin/fixfiles -R -a restore
|
|
||||||
|
|
||||||
# remove random-seed so it's not the same every time
|
|
||||||
rm -f /var/lib/systemd/random-seed
|
|
||||||
|
|
||||||
# Remove machine-id on the pre generated images
|
|
||||||
cat /dev/null > /etc/machine-id
|
|
||||||
|
|
||||||
# Anaconda is writing to /etc/resolv.conf from the generating environment.
|
|
||||||
# The system should start out with an empty file.
|
|
||||||
truncate -s 0 /etc/resolv.conf
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
# fedora-livecd-i3.ks
|
|
||||||
#
|
|
||||||
# Description:
|
|
||||||
# - Fedora Live Spin with the tiling window manager i3wm
|
|
||||||
#
|
|
||||||
# Maintainer(s):
|
|
||||||
# - Nasir Hussain <nasirhm@fedoraproject.org>
|
|
||||||
# - Eduard Lucena <x3mboy@fedoraproject.org>
|
|
||||||
# - Justin W. Flory <jwf@fedoraproject.org>
|
|
||||||
# - Dan Cermak <defolos@fedoraproject.org>
|
|
||||||
|
|
||||||
|
|
||||||
%packages
|
|
||||||
@^i3-desktop-environment
|
|
||||||
feh
|
|
||||||
dex-autostart
|
|
||||||
thunar
|
|
||||||
|
|
||||||
|
|
||||||
# unlock default keyring. FIXME: Should probably be done in comps
|
|
||||||
gnome-keyring-pam
|
|
||||||
# Admin tools are handy to have
|
|
||||||
@admin-tools
|
|
||||||
wget
|
|
||||||
# Better more popular browser
|
|
||||||
system-config-printer
|
|
||||||
|
|
||||||
# save some space
|
|
||||||
-autofs
|
|
||||||
-acpid
|
|
||||||
-gimp-help
|
|
||||||
-desktop-backgrounds-basic
|
|
||||||
-aspell-* # dictionaries are big
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -8,10 +8,10 @@ timezone --utc Etc/UTC
|
|||||||
selinux --enforcing
|
selinux --enforcing
|
||||||
rootpw --lock --iscrypted locked
|
rootpw --lock --iscrypted locked
|
||||||
|
|
||||||
bootloader --timeout=1 --append="modprobe.blacklist=vc4"
|
bootloader --timeout=1 --append="net.ifnames=0 modprobe.blacklist=vc4"
|
||||||
|
|
||||||
network --bootproto=dhcp --device=link --activate --onboot=on
|
network --bootproto=dhcp --device=link --activate --onboot=on
|
||||||
services --enabled=NetworkManager,sshd
|
services --enabled=NetworkManager,sshd,rngd
|
||||||
|
|
||||||
zerombr
|
zerombr
|
||||||
clearpart --all --initlabel --disklabel=msdos
|
clearpart --all --initlabel --disklabel=msdos
|
||||||
@@ -19,7 +19,7 @@ autopart --nohome --noswap --type=plain
|
|||||||
|
|
||||||
# Equivalent of %include fedora-repo.ks
|
# Equivalent of %include fedora-repo.ks
|
||||||
# Pull from the ostree repo that was created during the compose
|
# Pull from the ostree repo that was created during the compose
|
||||||
ostreesetup --nogpg --osname=fedora-iot --remote=fedora-iot --url=https://kojipkgs.fedoraproject.org/compose/iot/repo/ --ref=fedora/devel/${basearch}/iot
|
ostreesetup --nogpg --osname=fedora-iot --remote=fedora-iot --url=https://kojipkgs.fedoraproject.org/compose/iot/repo/ --ref=fedora/stable/${basearch}/iot
|
||||||
|
|
||||||
reboot
|
reboot
|
||||||
|
|
||||||
@@ -35,7 +35,6 @@ if [[ $arch == "aarch64" ]] || [[ $arch == "armhfp" ]]; then
|
|||||||
if [[ $arch == "aarch64" ]]; then
|
if [[ $arch == "aarch64" ]]; then
|
||||||
cp -P /usr/share/uboot/rpi_3/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
cp -P /usr/share/uboot/rpi_3/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
||||||
cp -P /usr/share/uboot/rpi_4/u-boot.bin /boot/efi/rpi4-u-boot.bin
|
cp -P /usr/share/uboot/rpi_4/u-boot.bin /boot/efi/rpi4-u-boot.bin
|
||||||
cp -P /usr/share/uboot/rpi_arm64/u-boot.bin /boot/efi/rpi-u-boot.bin
|
|
||||||
else
|
else
|
||||||
cp -P /usr/share/uboot/rpi_2/u-boot.bin /boot/efi/rpi2-u-boot.bin
|
cp -P /usr/share/uboot/rpi_2/u-boot.bin /boot/efi/rpi2-u-boot.bin
|
||||||
cp -P /usr/share/uboot/rpi_3_32b/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
cp -P /usr/share/uboot/rpi_3_32b/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
||||||
@@ -45,14 +44,14 @@ fi
|
|||||||
|
|
||||||
# Set the origin to the "main ref", distinct from /updates/ which is where bodhi writes.
|
# Set the origin to the "main ref", distinct from /updates/ which is where bodhi writes.
|
||||||
# We want consumers of this image to track the two week releases.
|
# We want consumers of this image to track the two week releases.
|
||||||
ostree admin set-origin --index 0 fedora-iot https://dl.fedoraproject.org/iot/repo/ "fedora/devel/${arch}/iot"
|
ostree admin set-origin --index 0 fedora-iot https://dl.fedoraproject.org/iot/repo/ "fedora/stable/${arch}/iot"
|
||||||
|
|
||||||
# Make sure the ref we're supposedly sitting on (according
|
# Make sure the ref we're supposedly sitting on (according
|
||||||
# to the updated origin) exists.
|
# to the updated origin) exists.
|
||||||
ostree refs "fedora-iot:fedora/devel/${arch}/iot" --create "fedora-iot:fedora/devel/${arch}/iot"
|
ostree refs "fedora-iot:fedora/stable/${arch}/iot" --create "fedora-iot:fedora/stable/${arch}/iot"
|
||||||
|
|
||||||
# Remove the old ref so that the commit eventually gets cleaned up.
|
# Remove the old ref so that the commit eventually gets cleaned up.
|
||||||
ostree refs "fedora-iot:fedora/devel/${arch}/iot" --delete
|
ostree refs "fedora-iot:fedora/stable/${arch}/iot" --delete
|
||||||
|
|
||||||
# delete/add the remote with new options to enable gpg verification
|
# delete/add the remote with new options to enable gpg verification
|
||||||
# and to point them at the cdn url
|
# and to point them at the cdn url
|
||||||
@@ -71,6 +70,14 @@ cp /etc/skel/.bash* /var/roothome
|
|||||||
|
|
||||||
# Remove any persistent NIC rules generated by udev
|
# Remove any persistent NIC rules generated by udev
|
||||||
rm -vf /etc/udev/rules.d/*persistent-net*.rules
|
rm -vf /etc/udev/rules.d/*persistent-net*.rules
|
||||||
|
# And ensure that we will do DHCP on eth0 on startup
|
||||||
|
cat > /etc/sysconfig/network-scripts/ifcfg-eth0 << EOF
|
||||||
|
DEVICE="eth0"
|
||||||
|
BOOTPROTO="dhcp"
|
||||||
|
ONBOOT="yes"
|
||||||
|
TYPE="Ethernet"
|
||||||
|
PERSISTENT_DHCLIENT="yes"
|
||||||
|
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/systemd/random-seed
|
||||||
@@ -88,7 +95,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.)"
|
||||||
|
|
||||||
rm -f /etc/NetworkManager/system-connections/*.nmconnection
|
# For trac ticket https://pagure.io/atomic-wg/issue/128
|
||||||
|
rm -f /etc/sysconfig/network-scripts/ifcfg-ens3
|
||||||
|
|
||||||
# Anaconda is writing an /etc/resolv.conf from the install environment.
|
# Anaconda is writing an /etc/resolv.conf from the install environment.
|
||||||
# The system should start out with an empty file, otherwise cloud-init
|
# The system should start out with an empty file, otherwise cloud-init
|
||||||
|
|||||||
@@ -1,41 +1,58 @@
|
|||||||
|
|
||||||
%packages
|
%packages
|
||||||
# install env-group to resolve RhBug:1891500
|
|
||||||
@^kde-desktop-environment
|
|
||||||
|
|
||||||
@firefox
|
@firefox
|
||||||
@kde-apps
|
@kde-apps
|
||||||
|
@kde-desktop
|
||||||
@kde-media
|
@kde-media
|
||||||
@libreoffice
|
@kde-office
|
||||||
# add libreoffice-draw and libreoffice-math (pagureio:fedora-kde/SIG#103)
|
@networkmanager-submodules
|
||||||
libreoffice-draw
|
|
||||||
libreoffice-math
|
|
||||||
|
|
||||||
fedora-release-kde
|
fedora-release-kde
|
||||||
|
|
||||||
-@admin-tools
|
|
||||||
|
|
||||||
# drop tracker stuff pulled in by gtk3 (pagureio:fedora-kde/SIG#124)
|
|
||||||
-tracker-miners
|
|
||||||
-tracker
|
|
||||||
|
|
||||||
### The KDE-Desktop
|
### The KDE-Desktop
|
||||||
|
|
||||||
|
### Browser
|
||||||
|
falkon
|
||||||
|
|
||||||
### fixes
|
### 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-connector-c
|
||||||
|
mariadb-server
|
||||||
|
|
||||||
# minimal localization support - allows installing the kde-l10n-* packages
|
# minimal localization support - allows installing the kde-l10n-* packages
|
||||||
|
system-config-language
|
||||||
kde-l10n
|
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
|
# Additional packages that are not default in kde-* groups, but useful
|
||||||
|
k3b # ~15 megs
|
||||||
|
#kdeartwork # only include some parts of kdeartwork
|
||||||
fuse
|
fuse
|
||||||
mediawriter
|
mediawriter
|
||||||
|
|
||||||
### space issues
|
### space issues
|
||||||
-ktorrent # kget has also basic torrent features (~3 megs)
|
|
||||||
-digikam # digikam has duplicate functionality with gwenview (~28 megs)
|
# admin-tools
|
||||||
-kipi-plugins # ~8 megs + drags in Marble
|
-gnome-disk-utility
|
||||||
-krusader # ~4 megs
|
# kcm_clock still lacks some features, so keep system-config-date around
|
||||||
-k3b # ~15 megs
|
#-system-config-date
|
||||||
|
# prefer kcm_systemd
|
||||||
|
-system-config-services
|
||||||
|
# prefer/use kusers
|
||||||
|
-system-config-users
|
||||||
|
|
||||||
## avoid serious bugs by omitting broken stuff
|
## avoid serious bugs by omitting broken stuff
|
||||||
|
|
||||||
|
|||||||
8
fedora-kde-minimization.ks
Normal file
8
fedora-kde-minimization.ks
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
# remove input methods to free space
|
||||||
|
%packages
|
||||||
|
-@input-methods
|
||||||
|
-scim*
|
||||||
|
-iok
|
||||||
|
%end
|
||||||
|
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
%include fedora-live-minimization.ks
|
%include fedora-live-minimization.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 16000
|
part / --size 14500
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
|
|
||||||
@@ -37,20 +37,24 @@ fpack
|
|||||||
psfex
|
psfex
|
||||||
scamp
|
scamp
|
||||||
sextractor
|
sextractor
|
||||||
#siril
|
siril
|
||||||
skyviewer
|
skyviewer
|
||||||
swarp
|
swarp
|
||||||
wcstools
|
wcstools
|
||||||
|
|
||||||
# Observatory: KStars + INDI drivers
|
# Observatory: KStars + INDI drivers
|
||||||
indi-3rdparty-drivers
|
indi-aagcloudwatcher
|
||||||
|
indi-apogee
|
||||||
|
indi-eqmod
|
||||||
|
indi-gphoto
|
||||||
|
indi-sx
|
||||||
indistarter
|
indistarter
|
||||||
kstars
|
kstars
|
||||||
|
|
||||||
# misc. astronomy
|
# misc. astronomy
|
||||||
#celestia
|
#celestia
|
||||||
stellarium
|
stellarium
|
||||||
#virtualplanet
|
virtualplanet
|
||||||
|
|
||||||
# Some astro environment stuff
|
# Some astro environment stuff
|
||||||
astronomy-menus
|
astronomy-menus
|
||||||
@@ -78,6 +82,7 @@ astropy-tools
|
|||||||
ginga
|
ginga
|
||||||
python3-astropy
|
python3-astropy
|
||||||
python3-astroML
|
python3-astroML
|
||||||
|
python3-astroML-addons
|
||||||
python3-astroquery
|
python3-astroquery
|
||||||
python3-astroscrappy
|
python3-astroscrappy
|
||||||
python3-APLpy
|
python3-APLpy
|
||||||
@@ -89,8 +94,10 @@ python3-photutils
|
|||||||
python3-pyvo
|
python3-pyvo
|
||||||
python3-reproject
|
python3-reproject
|
||||||
python3-sep
|
python3-sep
|
||||||
|
python3-wcsaxes
|
||||||
|
|
||||||
# matplotlib backends
|
# matplotlib backends
|
||||||
|
python3-matplotlib-qt4
|
||||||
python3-matplotlib-qt5
|
python3-matplotlib-qt5
|
||||||
python3-matplotlib-tk
|
python3-matplotlib-tk
|
||||||
|
|
||||||
@@ -103,6 +110,9 @@ boinc-client
|
|||||||
boinc-manager
|
boinc-manager
|
||||||
|
|
||||||
#Version control- a GUI for each as well
|
#Version control- a GUI for each as well
|
||||||
|
|
||||||
|
# Installing rapidsvn will also install subversion package
|
||||||
|
rapidsvn
|
||||||
git
|
git
|
||||||
git-gui
|
git-gui
|
||||||
|
|
||||||
@@ -112,18 +122,17 @@ gimp
|
|||||||
kst
|
kst
|
||||||
kst-docs
|
kst-docs
|
||||||
kst-fits
|
kst-fits
|
||||||
# LabPlot currently not installable due to #2044284
|
LabPlot
|
||||||
#LabPlot
|
|
||||||
|
|
||||||
#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
|
||||||
# Java JRE for VO tools
|
|
||||||
java
|
|
||||||
|
|
||||||
# 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-*
|
||||||
|
|||||||
@@ -24,12 +24,29 @@ shutdown
|
|||||||
%include fedora-repo.ks
|
%include fedora-repo.ks
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
|
@base-x
|
||||||
|
@guest-desktop-agents
|
||||||
|
@standard
|
||||||
|
@core
|
||||||
|
@fonts
|
||||||
|
@input-methods
|
||||||
|
@dial-up
|
||||||
|
@multimedia
|
||||||
|
@hardware-support
|
||||||
|
@printing
|
||||||
|
|
||||||
# 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
|
||||||
kernel-modules-extra
|
kernel-modules-extra
|
||||||
|
|
||||||
|
# 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
|
||||||
|
# for now.
|
||||||
|
#memtest86+
|
||||||
|
@x86-baremetal-tools # memtest86+ is included
|
||||||
|
|
||||||
# The point of a live image is to install
|
# The point of a live image is to install
|
||||||
anaconda
|
anaconda
|
||||||
anaconda-install-env-deps
|
anaconda-install-env-deps
|
||||||
@@ -45,18 +62,233 @@ 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
|
||||||
|
# syslinux is in @x86-baremetal-tools
|
||||||
|
|
||||||
# anaconda needs the locales available to run for different locales
|
# anaconda needs the locales available to run for different locales
|
||||||
glibc-all-langpacks
|
glibc-all-langpacks
|
||||||
|
|
||||||
# provide the livesys scripts
|
# no longer in @core since 2018-10, but needed for livesys script
|
||||||
livesys-scripts
|
initscripts
|
||||||
|
chkconfig
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%post
|
%post
|
||||||
# Enable livesys services
|
# FIXME: it'd be better to get this installed from a package
|
||||||
systemctl enable livesys.service
|
cat > /etc/rc.d/init.d/livesys << EOF
|
||||||
systemctl enable livesys-late.service
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# live: Init script for live image
|
||||||
|
#
|
||||||
|
# chkconfig: 345 00 99
|
||||||
|
# description: Init script for live image.
|
||||||
|
### BEGIN INIT INFO
|
||||||
|
# X-Start-Before: display-manager chronyd
|
||||||
|
### END INIT INFO
|
||||||
|
|
||||||
|
. /etc/init.d/functions
|
||||||
|
|
||||||
|
if ! strstr "\`cat /proc/cmdline\`" rd.live.image || [ "\$1" != "start" ]; then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -e /.liveimg-configured ] ; then
|
||||||
|
configdone=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
exists() {
|
||||||
|
which \$1 >/dev/null 2>&1 || return
|
||||||
|
\$*
|
||||||
|
}
|
||||||
|
|
||||||
|
livedir="LiveOS"
|
||||||
|
for arg in \`cat /proc/cmdline\` ; do
|
||||||
|
if [ "\${arg##rd.live.dir=}" != "\${arg}" ]; then
|
||||||
|
livedir=\${arg##rd.live.dir=}
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
if [ "\${arg##live_dir=}" != "\${arg}" ]; then
|
||||||
|
livedir=\${arg##live_dir=}
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# enable swapfile if it exists
|
||||||
|
if ! strstr "\`cat /proc/cmdline\`" noswap && [ -f /run/initramfs/live/\${livedir}/swap.img ] ; then
|
||||||
|
action "Enabling swap file" swapon /run/initramfs/live/\${livedir}/swap.img
|
||||||
|
fi
|
||||||
|
|
||||||
|
mountPersistentHome() {
|
||||||
|
# support label/uuid
|
||||||
|
if [ "\${homedev##LABEL=}" != "\${homedev}" -o "\${homedev##UUID=}" != "\${homedev}" ]; then
|
||||||
|
homedev=\`/sbin/blkid -o device -t "\$homedev"\`
|
||||||
|
fi
|
||||||
|
|
||||||
|
# if we're given a file rather than a blockdev, loopback it
|
||||||
|
if [ "\${homedev##mtd}" != "\${homedev}" ]; then
|
||||||
|
# mtd devs don't have a block device but get magic-mounted with -t jffs2
|
||||||
|
mountopts="-t jffs2"
|
||||||
|
elif [ ! -b "\$homedev" ]; then
|
||||||
|
loopdev=\`losetup -f\`
|
||||||
|
if [ "\${homedev##/run/initramfs/live}" != "\${homedev}" ]; then
|
||||||
|
action "Remounting live store r/w" mount -o remount,rw /run/initramfs/live
|
||||||
|
fi
|
||||||
|
losetup \$loopdev \$homedev
|
||||||
|
homedev=\$loopdev
|
||||||
|
fi
|
||||||
|
|
||||||
|
# if it's encrypted, we need to unlock it
|
||||||
|
if [ "\$(/sbin/blkid -s TYPE -o value \$homedev 2>/dev/null)" = "crypto_LUKS" ]; then
|
||||||
|
echo
|
||||||
|
echo "Setting up encrypted /home device"
|
||||||
|
plymouth ask-for-password --command="cryptsetup luksOpen \$homedev EncHome"
|
||||||
|
homedev=/dev/mapper/EncHome
|
||||||
|
fi
|
||||||
|
|
||||||
|
# and finally do the mount
|
||||||
|
mount \$mountopts \$homedev /home
|
||||||
|
# if we have /home under what's passed for persistent home, then
|
||||||
|
# we should make that the real /home. useful for mtd device on olpc
|
||||||
|
if [ -d /home/home ]; then mount --bind /home/home /home ; fi
|
||||||
|
[ -x /sbin/restorecon ] && /sbin/restorecon /home
|
||||||
|
if [ -d /home/liveuser ]; then USERADDARGS="-M" ; fi
|
||||||
|
}
|
||||||
|
|
||||||
|
findPersistentHome() {
|
||||||
|
for arg in \`cat /proc/cmdline\` ; do
|
||||||
|
if [ "\${arg##persistenthome=}" != "\${arg}" ]; then
|
||||||
|
homedev=\${arg##persistenthome=}
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
if strstr "\`cat /proc/cmdline\`" persistenthome= ; then
|
||||||
|
findPersistentHome
|
||||||
|
elif [ -e /run/initramfs/live/\${livedir}/home.img ]; then
|
||||||
|
homedev=/run/initramfs/live/\${livedir}/home.img
|
||||||
|
fi
|
||||||
|
|
||||||
|
# if we have a persistent /home, then we want to go ahead and mount it
|
||||||
|
if ! strstr "\`cat /proc/cmdline\`" nopersistenthome && [ -n "\$homedev" ] ; then
|
||||||
|
action "Mounting persistent /home" mountPersistentHome
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "\$configdone" ]; then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# add liveuser user with no passwd
|
||||||
|
action "Adding live user" useradd \$USERADDARGS -c "Live System User" liveuser
|
||||||
|
passwd -d liveuser > /dev/null
|
||||||
|
usermod -aG wheel liveuser > /dev/null
|
||||||
|
|
||||||
|
# Remove root password lock
|
||||||
|
passwd -d root > /dev/null
|
||||||
|
|
||||||
|
# turn off firstboot for livecd boots
|
||||||
|
systemctl --no-reload disable firstboot-text.service 2> /dev/null || :
|
||||||
|
systemctl --no-reload disable firstboot-graphical.service 2> /dev/null || :
|
||||||
|
systemctl stop firstboot-text.service 2> /dev/null || :
|
||||||
|
systemctl stop firstboot-graphical.service 2> /dev/null || :
|
||||||
|
|
||||||
|
# don't use prelink on a running live image
|
||||||
|
sed -i 's/PRELINKING=yes/PRELINKING=no/' /etc/sysconfig/prelink &>/dev/null || :
|
||||||
|
|
||||||
|
# turn off mdmonitor by default
|
||||||
|
systemctl --no-reload disable mdmonitor.service 2> /dev/null || :
|
||||||
|
systemctl --no-reload disable mdmonitor-takeover.service 2> /dev/null || :
|
||||||
|
systemctl stop mdmonitor.service 2> /dev/null || :
|
||||||
|
systemctl stop mdmonitor-takeover.service 2> /dev/null || :
|
||||||
|
|
||||||
|
# don't enable the gnome-settings-daemon packagekit plugin
|
||||||
|
gsettings set org.gnome.software download-updates 'false' || :
|
||||||
|
|
||||||
|
# don't start cron/at as they tend to spawn things which are
|
||||||
|
# disk intensive that are painful on a live image
|
||||||
|
systemctl --no-reload disable crond.service 2> /dev/null || :
|
||||||
|
systemctl --no-reload disable atd.service 2> /dev/null || :
|
||||||
|
systemctl stop crond.service 2> /dev/null || :
|
||||||
|
systemctl stop atd.service 2> /dev/null || :
|
||||||
|
|
||||||
|
# turn off abrtd on a live image
|
||||||
|
systemctl --no-reload disable abrtd.service 2> /dev/null || :
|
||||||
|
systemctl stop abrtd.service 2> /dev/null || :
|
||||||
|
|
||||||
|
# Don't sync the system clock when running live (RHBZ #1018162)
|
||||||
|
sed -i 's/rtcsync//' /etc/chrony.conf
|
||||||
|
|
||||||
|
# Mark things as configured
|
||||||
|
touch /.liveimg-configured
|
||||||
|
|
||||||
|
# add static hostname to work around xauth bug
|
||||||
|
# https://bugzilla.redhat.com/show_bug.cgi?id=679486
|
||||||
|
# the hostname must be something else than 'localhost'
|
||||||
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1370222
|
||||||
|
hostnamectl set-hostname "localhost-live"
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# bah, hal starts way too late
|
||||||
|
cat > /etc/rc.d/init.d/livesys-late << EOF
|
||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# live: Late init script for live image
|
||||||
|
#
|
||||||
|
# chkconfig: 345 99 01
|
||||||
|
# description: Late init script for live image.
|
||||||
|
|
||||||
|
. /etc/init.d/functions
|
||||||
|
|
||||||
|
if ! strstr "\`cat /proc/cmdline\`" rd.live.image || [ "\$1" != "start" ] || [ -e /.liveimg-late-configured ] ; then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
exists() {
|
||||||
|
which \$1 >/dev/null 2>&1 || return
|
||||||
|
\$*
|
||||||
|
}
|
||||||
|
|
||||||
|
touch /.liveimg-late-configured
|
||||||
|
|
||||||
|
# read some variables out of /proc/cmdline
|
||||||
|
for o in \`cat /proc/cmdline\` ; do
|
||||||
|
case \$o in
|
||||||
|
ks=*)
|
||||||
|
ks="--kickstart=\${o#ks=}"
|
||||||
|
;;
|
||||||
|
xdriver=*)
|
||||||
|
xdriver="\${o#xdriver=}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
# if liveinst or textinst is given, start anaconda
|
||||||
|
if strstr "\`cat /proc/cmdline\`" liveinst ; then
|
||||||
|
plymouth --quit
|
||||||
|
/usr/sbin/liveinst \$ks
|
||||||
|
fi
|
||||||
|
if strstr "\`cat /proc/cmdline\`" textinst ; then
|
||||||
|
plymouth --quit
|
||||||
|
/usr/sbin/liveinst --text \$ks
|
||||||
|
fi
|
||||||
|
|
||||||
|
# configure X, allowing user to override xdriver
|
||||||
|
if [ -n "\$xdriver" ]; then
|
||||||
|
cat > /etc/X11/xorg.conf.d/00-xdriver.conf <<FOE
|
||||||
|
Section "Device"
|
||||||
|
Identifier "Videocard0"
|
||||||
|
Driver "\$xdriver"
|
||||||
|
EndSection
|
||||||
|
FOE
|
||||||
|
fi
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
|
chmod 755 /etc/rc.d/init.d/livesys
|
||||||
|
/sbin/restorecon /etc/rc.d/init.d/livesys
|
||||||
|
/sbin/chkconfig --add livesys
|
||||||
|
|
||||||
|
chmod 755 /etc/rc.d/init.d/livesys-late
|
||||||
|
/sbin/restorecon /etc/rc.d/init.d/livesys-late
|
||||||
|
/sbin/chkconfig --add livesys-late
|
||||||
|
|
||||||
# enable tmpfs for /tmp
|
# enable tmpfs for /tmp
|
||||||
systemctl enable tmp.mount
|
systemctl enable tmp.mount
|
||||||
@@ -70,6 +302,9 @@ EOF
|
|||||||
|
|
||||||
# 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 --eval '%{fedora}')
|
||||||
|
basearch=$(uname -i)
|
||||||
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||||
echo "Packages within this LiveCD"
|
echo "Packages within this LiveCD"
|
||||||
rpm -qa --qf '%{size}\t%{name}-%{version}-%{release}.%{arch}\n' |sort -rn
|
rpm -qa --qf '%{size}\t%{name}-%{version}-%{release}.%{arch}\n' |sort -rn
|
||||||
# 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
|
||||||
@@ -96,7 +331,7 @@ rm -f /boot/*-rescue*
|
|||||||
|
|
||||||
# Disable network service here, as doing it in the services line
|
# Disable network service here, as doing it in the services line
|
||||||
# fails due to RHBZ #1369794
|
# fails due to RHBZ #1369794
|
||||||
systemctl disable network
|
/sbin/chkconfig network off
|
||||||
|
|
||||||
# Remove machine-id on pre generated images
|
# Remove machine-id on pre generated images
|
||||||
rm -f /etc/machine-id
|
rm -f /etc/machine-id
|
||||||
@@ -104,3 +339,25 @@ touch /etc/machine-id
|
|||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|
||||||
|
%post --nochroot
|
||||||
|
cp $INSTALL_ROOT/usr/share/licenses/*-release/* $LIVE_ROOT/
|
||||||
|
|
||||||
|
# only works on x86, x86_64
|
||||||
|
if [ "$(uname -i)" = "i386" -o "$(uname -i)" = "x86_64" ]; then
|
||||||
|
# For livecd-creator builds
|
||||||
|
if [ ! -d $LIVE_ROOT/LiveOS ]; then mkdir -p $LIVE_ROOT/LiveOS ; fi
|
||||||
|
cp /usr/bin/livecd-iso-to-disk $LIVE_ROOT/LiveOS
|
||||||
|
|
||||||
|
# For lorax/livemedia-creator builds
|
||||||
|
sed -i '
|
||||||
|
/## make boot.iso/ i\
|
||||||
|
# Add livecd-iso-to-disk script to .iso filesystem at /LiveOS/\
|
||||||
|
<% f = "usr/bin/livecd-iso-to-disk" %>\
|
||||||
|
%if exists(f):\
|
||||||
|
install ${f} ${LIVEDIR}/${f|basename}\
|
||||||
|
%endif\
|
||||||
|
' /usr/share/lorax/templates.d/99-generic/live/x86.tmpl
|
||||||
|
fi
|
||||||
|
|
||||||
|
%end
|
||||||
|
|||||||
@@ -1,17 +0,0 @@
|
|||||||
# Description:
|
|
||||||
# - Fedora Live Spin with the Budgie Desktop Environment
|
|
||||||
#
|
|
||||||
# Maintainer(s):
|
|
||||||
# - Joshua Strobl <joshua@buddiesofbudgie.org>
|
|
||||||
|
|
||||||
%include fedora-live-base.ks
|
|
||||||
%include fedora-budgie-common.ks
|
|
||||||
|
|
||||||
part / --size 7750
|
|
||||||
|
|
||||||
%post
|
|
||||||
|
|
||||||
# set livesys session type
|
|
||||||
sed -i 's/^livesys_session=.*/livesys_session="budgie"/' /etc/sysconfig/livesys
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -21,8 +21,32 @@ PREFERRED=/usr/bin/cinnamon-session
|
|||||||
DISPLAYMANAGER=/usr/sbin/lightdm
|
DISPLAYMANAGER=/usr/sbin/lightdm
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# set livesys session type
|
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||||
sed -i 's/^livesys_session=.*/livesys_session="cinnamon"/' /etc/sysconfig/livesys
|
|
||||||
|
# set up lightdm autologin
|
||||||
|
sed -i 's/^#autologin-user=.*/autologin-user=liveuser/' /etc/lightdm/lightdm.conf
|
||||||
|
sed -i 's/^#autologin-user-timeout=.*/autologin-user-timeout=0/' /etc/lightdm/lightdm.conf
|
||||||
|
#sed -i 's/^#show-language-selector=.*/show-language-selector=true/' /etc/lightdm/lightdm-gtk-greeter.conf
|
||||||
|
|
||||||
|
# set Cinnamon as default session, otherwise login will fail
|
||||||
|
sed -i 's/^#user-session=.*/user-session=cinnamon/' /etc/lightdm/lightdm.conf
|
||||||
|
|
||||||
|
# no updater applet in live environment
|
||||||
|
rm -f /etc/xdg/autostart/org.mageia.dnfdragora-updater.desktop
|
||||||
|
|
||||||
|
# Show harddisk install on the desktop
|
||||||
|
sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop
|
||||||
|
mkdir /home/liveuser/Desktop
|
||||||
|
cp /usr/share/applications/liveinst.desktop /home/liveuser/Desktop
|
||||||
|
|
||||||
|
# and mark it as executable
|
||||||
|
chmod +x /home/liveuser/Desktop/liveinst.desktop
|
||||||
|
|
||||||
|
# this goes at the end after all other changes.
|
||||||
|
chown -R liveuser:liveuser /home/liveuser
|
||||||
|
restorecon -R /home/liveuser
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
# https://fedoraproject.org/wiki/Changes/Comp_Neuro_Lab
|
# https://fedoraproject.org/wiki/Changes/Comp_Neuro_Lab
|
||||||
#
|
#
|
||||||
# Maintained by the NeuroFedora SIG:
|
# Maintained by the NeuroFedora SIG:
|
||||||
# https://neuro.fedoraproject.org
|
# https://fedoraproject.org/wiki/SIGs/NeuroFedora
|
||||||
# mailto:neuro-sig@lists.fedoraproject.org
|
# mailto:neuro-sig@lists.fedoraproject.org
|
||||||
|
|
||||||
%include fedora-live-workstation.ks
|
%include fedora-live-workstation.ks
|
||||||
|
|||||||
@@ -1,17 +1,59 @@
|
|||||||
# fedora-design-suite.ks
|
# fedora-design-suite.ks
|
||||||
# Based on Live Workstation
|
# Based on Live Workstation
|
||||||
# A collection of applications for professional visual designers
|
# Description:
|
||||||
# http://fedoraproject.org/wiki/Design_Suite
|
# - A collection of applications targeted towards professional visual designers
|
||||||
# Maintained by Luya Tshimbalanga <luya AT fedoraproject DOT org>
|
# Website: http://fedoraproject.org/wiki/Design_Suite
|
||||||
# Credit to Sebastian Dziallas for initiating the project
|
# Maintainer:
|
||||||
|
# - Luya Tshimbalanga <luya AT fedoraproject DOT org>
|
||||||
|
# - Credit to Sebastian Dziallas for initiating the project
|
||||||
|
|
||||||
%include fedora-live-workstation.ks
|
%include fedora-live-workstation.ks
|
||||||
%include fedora-design-suite-common.ks
|
|
||||||
|
|
||||||
# Size partition
|
# Size partition
|
||||||
part / --size 14336
|
part / --size 14336
|
||||||
|
|
||||||
|
%packages
|
||||||
|
# Switch to groups for design suite
|
||||||
|
@design-suite
|
||||||
|
|
||||||
|
# Provides backup application
|
||||||
|
#deja-dup
|
||||||
|
#deja-dup-nautilus
|
||||||
|
|
||||||
|
# Add extra gnome applications
|
||||||
|
gnome-books
|
||||||
|
gnome-calendar
|
||||||
|
gnome-photos
|
||||||
|
gnome-shell-extension-pomodoro
|
||||||
|
gnome-todo
|
||||||
|
|
||||||
|
# Add cosmetic for gnome-terminal
|
||||||
|
powerline
|
||||||
|
powerline-fonts
|
||||||
|
|
||||||
|
# Extra wallpapers
|
||||||
|
f33-backgrounds-extras-gnome
|
||||||
|
|
||||||
|
# removal of unneeded applications
|
||||||
|
-gnome-boxes
|
||||||
|
-eog
|
||||||
|
-rdesktop
|
||||||
|
|
||||||
|
# temporarily removing conflicting applications
|
||||||
|
-blender-luxcorerender
|
||||||
|
-mypaint
|
||||||
|
-shutter
|
||||||
|
-sparkleshare
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
#Override the favorite desktop application in Dash
|
||||||
|
cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
|
||||||
|
[org.gnome.shell]
|
||||||
|
favorite-apps=['firefox.desktop', 'shotwell.desktop', 'gimp.desktop', 'darktable.desktop','krita.desktop', 'inkscape.desktop', 'blender.desktop', 'libreoffice-writer.desktop', 'scribus.desktop', 'pitivi.desktop', 'nautilus.desktop', 'bijiben.desktop', 'anaconda.desktop', 'list-design-tutorials.desktop']
|
||||||
|
FOE
|
||||||
|
|
||||||
# Add link to lists of tutorials
|
# Add link to lists of tutorials
|
||||||
cat >> /usr/share/applications/list-design-tutorials.desktop << FOE
|
cat >> /usr/share/applications/list-design-tutorials.desktop << FOE
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
@@ -51,22 +93,6 @@ Categories=Documentation;
|
|||||||
FOE
|
FOE
|
||||||
chmod a+x /usr/share/applications/fedora-design-team.desktop
|
chmod a+x /usr/share/applications/fedora-design-team.desktop
|
||||||
|
|
||||||
# Use Powerline in bash
|
|
||||||
cat >> $HOME/.bashrc << FOE
|
|
||||||
# Enable powerline daemon
|
|
||||||
if [ -f `which powerline-daemon` ]; then
|
|
||||||
powerline-daemon -q
|
|
||||||
POWERLINE_BASH_CONTINUATION=1
|
|
||||||
POWERLINE_BASH_SELECT=1
|
|
||||||
. /usr/share/powerline/bash/powerline.sh
|
|
||||||
fi
|
|
||||||
FOE
|
|
||||||
|
|
||||||
cat >> /var/lib/livesys/livesys-session-extra << FOE
|
|
||||||
#Override the favorite desktop application in Dash
|
|
||||||
sed -i "s/favorite-apps=."'*'"/favorite-apps=['firefox.desktop', 'shotwell.desktop', 'gimp.desktop', 'darktable.desktop','krita.desktop', 'inkscape.desktop', 'blender.desktop', 'libreoffice-writer.desktop', 'scribus.desktop', 'pitivi.desktop', 'nautilus.desktop', 'bijiben.desktop', 'anaconda.desktop', 'list-design-tutorials.desktop']/" /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override
|
|
||||||
FOE
|
|
||||||
|
|
||||||
# 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
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,9 @@
|
|||||||
# fedora-live-games.ks
|
# fedora-live-games.ks
|
||||||
#
|
#
|
||||||
# Maintainers:
|
# Maintainer:
|
||||||
# - Darryl T. Agostinelli <dagostinelli@gmail.com>
|
# - Darryl T. Agostinelli <dagostinelli@gmail.com>
|
||||||
# https://fedoraproject.org/wiki/User:Dagostinelli
|
# https://fedoraproject.org/wiki/User:Dagostinelli
|
||||||
#
|
#
|
||||||
# - Richard Anaya <richard.anaya@gmail.com>
|
|
||||||
# https://fedoraproject.org/wiki/User:Richardanaya
|
|
||||||
#
|
|
||||||
# Former Maintainers:
|
# Former Maintainers:
|
||||||
# - Bruno Wolff III <bruno@wolff.to>
|
# - Bruno Wolff III <bruno@wolff.to>
|
||||||
# https://fedoraproject.org/wiki/User:Bruno
|
# https://fedoraproject.org/wiki/User:Bruno
|
||||||
@@ -153,7 +150,7 @@ gweled
|
|||||||
|
|
||||||
# puzzles (big)
|
# puzzles (big)
|
||||||
enigma
|
enigma
|
||||||
# fillets-ng # broken in f34
|
fillets-ng
|
||||||
pingus
|
pingus
|
||||||
|
|
||||||
# puzzles (small)
|
# puzzles (small)
|
||||||
|
|||||||
@@ -1,30 +0,0 @@
|
|||||||
# fedora-livecd-i3.ks
|
|
||||||
#
|
|
||||||
# Description:
|
|
||||||
# - Fedora Live Spin with the tiling window manager i3
|
|
||||||
#
|
|
||||||
# Maintainer(s):
|
|
||||||
# - Nasir Hussain <nasirhm@fedoraproject.org>
|
|
||||||
# - Eduard Lucena <x3mboy@fedoraproject.org>
|
|
||||||
# - Dan Cermak <defolos@tummy.com>
|
|
||||||
# - Justin W. Flory <jwf@fedoraproject.org>
|
|
||||||
|
|
||||||
%include fedora-live-base.ks
|
|
||||||
%include fedora-live-minimization.ks
|
|
||||||
%include fedora-i3-common.ks
|
|
||||||
|
|
||||||
%post
|
|
||||||
# i3 configuration
|
|
||||||
|
|
||||||
# create /etc/sysconfig/desktop (needed for installation)
|
|
||||||
|
|
||||||
cat > /etc/sysconfig/desktop <<EOF
|
|
||||||
PREFERRED=/usr/bin/i3
|
|
||||||
DISPLAYMANAGER=/usr/sbin/lightdm
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# set livesys session type
|
|
||||||
sed -i 's/^livesys_session=.*/livesys_session="i3"/' /etc/sysconfig/livesys
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
# Web: https://fedoraproject.org/wiki/Fedora_jam
|
# Web: https://fedoraproject.org/wiki/Fedora_jam
|
||||||
# Web: insert spinspacke when created
|
# Web: insert spinspacke when created
|
||||||
|
|
||||||
# Maintainer: JT Pennington (q5sys) <jt@obs-sec.com>
|
# Maintainer: Erich Eickmeyer <erich@ericheickmeyer.com>
|
||||||
|
|
||||||
%include fedora-live-kde.ks
|
%include fedora-live-kde.ks
|
||||||
|
|
||||||
@@ -63,20 +63,22 @@ thunderbird
|
|||||||
|
|
||||||
%post
|
%post
|
||||||
|
|
||||||
# Override livesys-kde settings
|
|
||||||
cat >> /var/lib/livesys/livesys-session-extra << EOF
|
|
||||||
|
|
||||||
#setup kickoff favorites
|
#setup kickoff favorites
|
||||||
/bin/mkdir -p /etc/skel/.config
|
/bin/mkdir -p /etc/skel/.config
|
||||||
|
|
||||||
JAMFAVORITES=/usr/share/applications/firefox.desktop,/usr/share/applications/mozilla-thunderbird.desktop,/usr/share/applications/studio-controls.desktop,/usr/share/applications/ardour6.desktop,/usr/share/applications/carla.desktop,/usr/share/applications/org.kde.konsole.desktop,/usr/share/applications/org.kde.dolphin.desktop,/usr/share/applications/systemsettings.desktop
|
JAMFAVORITES=/usr/share/applications/firefox.desktop,/usr/share/applications/mozilla-thunderbird.desktop,/usr/share/applications/studio-controls.desktop,/usr/share/applications/ardour6.desktop,/usr/share/applications/carla.desktop,/usr/share/applications/org.kde.konsole.desktop,/usr/share/applications/org.kde.dolphin.desktop,/usr/share/applications/systemsettings.desktop
|
||||||
JAMFAVORITESLIVE=/usr/share/applications/liveinst.desktop,$JAMFAVORITES
|
JAMFAVORITESLIVE=/usr/share/applications/liveinst.desktop,$JAMFAVORITES
|
||||||
|
|
||||||
cat <<FOE >> /etc/skel/.config/kickoffrc
|
cat <<EOF >> /etc/skel/.config/kickoffrc
|
||||||
[Favorites]
|
[Favorites]
|
||||||
FavoriteURLs=$JAMFAVORITES
|
FavoriteURLs=$JAMFAVORITES
|
||||||
FOE
|
EOF
|
||||||
|
|
||||||
|
# Override fedora-live-kde-base.ks settings
|
||||||
|
sed -i /etc/rc.d/init.d/livesys -res"#^(FavoriteURLs=).*#\1${JAMFAVORITESLIVE}#"
|
||||||
|
|
||||||
|
|
||||||
|
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||||
/usr/sbin/usermod -a -G jackuser,audio liveuser
|
/usr/sbin/usermod -a -G jackuser,audio liveuser
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,68 @@ cat > /root/.config/gtk-3.0/settings.ini << EOF
|
|||||||
gtk-theme-name = Adwaita
|
gtk-theme-name = Adwaita
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# set livesys session type
|
# add initscript
|
||||||
sed -i 's/^livesys_session=.*/livesys_session="kde"/' /etc/sysconfig/livesys
|
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=plasma.desktop/' /etc/sddm.conf
|
||||||
|
else
|
||||||
|
cat > /etc/sddm.conf << SDDM_EOF
|
||||||
|
[Autologin]
|
||||||
|
User=liveuser
|
||||||
|
Session=plasma.desktop
|
||||||
|
SDDM_EOF
|
||||||
|
fi
|
||||||
|
|
||||||
|
# add liveinst.desktop to favorites menu
|
||||||
|
mkdir -p /home/liveuser/.config/
|
||||||
|
cat > /home/liveuser/.config/kickoffrc << MENU_EOF
|
||||||
|
[Favorites]
|
||||||
|
FavoriteURLs=/usr/share/applications/firefox.desktop,/usr/share/applications/org.kde.dolphin.desktop,/usr/share/applications/systemsettings.desktop,/usr/share/applications/org.kde.konsole.desktop,/usr/share/applications/liveinst.desktop
|
||||||
|
MENU_EOF
|
||||||
|
|
||||||
|
# show liveinst.desktop on desktop and in menu
|
||||||
|
sed -i 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop
|
||||||
|
# set executable bit disable KDE security warning
|
||||||
|
chmod +x /usr/share/applications/liveinst.desktop
|
||||||
|
mkdir /home/liveuser/Desktop
|
||||||
|
cp -a /usr/share/applications/liveinst.desktop /home/liveuser/Desktop/
|
||||||
|
|
||||||
|
# Set akonadi backend
|
||||||
|
mkdir -p /home/liveuser/.config/akonadi
|
||||||
|
cat > /home/liveuser/.config/akonadi/akonadiserverrc << AKONADI_EOF
|
||||||
|
[%General]
|
||||||
|
Driver=QSQLITE3
|
||||||
|
AKONADI_EOF
|
||||||
|
|
||||||
|
# Disable plasma-pk-updates (bz #1436873 and 1206760)
|
||||||
|
echo "Removing plasma-pk-updates package."
|
||||||
|
rpm -e plasma-pk-updates
|
||||||
|
|
||||||
|
# Disable baloo
|
||||||
|
cat > /home/liveuser/.config/baloofilerc << BALOO_EOF
|
||||||
|
[Basic Settings]
|
||||||
|
Indexing-Enabled=false
|
||||||
|
BALOO_EOF
|
||||||
|
|
||||||
|
# Disable kres-migrator
|
||||||
|
cat > /home/liveuser/.kde/share/config/kres-migratorrc << KRES_EOF
|
||||||
|
[Migration]
|
||||||
|
Enabled=false
|
||||||
|
KRES_EOF
|
||||||
|
|
||||||
|
# Disable kwallet migrator
|
||||||
|
cat > /home/liveuser/.config/kwalletrc << KWALLET_EOL
|
||||||
|
[Migration]
|
||||||
|
alreadyMigrated=true
|
||||||
|
KWALLET_EOL
|
||||||
|
|
||||||
|
# make sure to set the right permissions and selinux contexts
|
||||||
|
chown -R liveuser:liveuser /home/liveuser/
|
||||||
|
restorecon -R /home/liveuser/
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -9,9 +9,10 @@
|
|||||||
|
|
||||||
%include fedora-live-kde-base.ks
|
%include fedora-live-kde-base.ks
|
||||||
%include fedora-live-minimization.ks
|
%include fedora-live-minimization.ks
|
||||||
|
%include fedora-kde-minimization.ks
|
||||||
|
|
||||||
# DVD payload
|
# DVD payload
|
||||||
part / --size=8000
|
part / --size=7000
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -19,8 +19,46 @@ PREFERRED=/usr/bin/startlxde
|
|||||||
DISPLAYMANAGER=/usr/sbin/lxdm
|
DISPLAYMANAGER=/usr/sbin/lxdm
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# set livesys session type
|
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||||
sed -i 's/^livesys_session=.*/livesys_session="lxde"/' /etc/sysconfig/livesys
|
# disable screensaver locking and make sure gamin gets started
|
||||||
|
cat > /etc/xdg/lxsession/LXDE/autostart << FOE
|
||||||
|
/usr/libexec/gam_server
|
||||||
|
@lxpanel --profile LXDE
|
||||||
|
@pcmanfm --desktop --profile LXDE
|
||||||
|
/usr/libexec/notification-daemon
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# set up preferred apps
|
||||||
|
cat > /etc/xdg/libfm/pref-apps.conf << FOE
|
||||||
|
[Preferred Applications]
|
||||||
|
WebBrowser=firefox.desktop
|
||||||
|
MailClient=sylpheed.desktop
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# set up auto-login for liveuser
|
||||||
|
sed -i 's/# autologin=.*/autologin=liveuser/g' /etc/lxdm/lxdm.conf
|
||||||
|
|
||||||
|
# Show harddisk install on the desktop
|
||||||
|
sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop
|
||||||
|
mkdir /home/liveuser/Desktop
|
||||||
|
cp /usr/share/applications/liveinst.desktop /home/liveuser/Desktop
|
||||||
|
|
||||||
|
# create default config for clipit, otherwise it displays a dialog on startup
|
||||||
|
mkdir -p /home/liveuser/.config/clipit
|
||||||
|
cat > /home/liveuser/.config/clipit/clipitrc << FOE
|
||||||
|
[rc]
|
||||||
|
use_copy=true
|
||||||
|
save_uris=true
|
||||||
|
save_history=false
|
||||||
|
statics_show=true
|
||||||
|
single_line=true
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# this goes at the end after all other changes.
|
||||||
|
chown -R liveuser:liveuser /home/liveuser
|
||||||
|
restorecon -R /home/liveuser
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -16,8 +16,42 @@ dracut-config-generic
|
|||||||
%end
|
%end
|
||||||
|
|
||||||
%post
|
%post
|
||||||
# set livesys session type
|
# add initscript
|
||||||
sed -i 's/^livesys_session=.*/livesys_session="lxqt"/' /etc/sysconfig/livesys
|
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
|
||||||
|
|
||||||
|
dnf -y remove dracut-config-generic
|
||||||
|
|
||||||
|
# make sure to set the right permissions and selinux contexts
|
||||||
|
chown -R liveuser:liveuser /home/liveuser/
|
||||||
|
restorecon -R /home/liveuser/
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,42 @@
|
|||||||
part / --size 8192
|
part / --size 8192
|
||||||
|
|
||||||
%post
|
%post
|
||||||
# set livesys session type
|
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||||
sed -i 's/^livesys_session=.*/livesys_session="mate"/' /etc/sysconfig/livesys
|
|
||||||
|
|
||||||
|
# make the installer show up
|
||||||
|
if [ -f /usr/share/applications/liveinst.desktop ]; then
|
||||||
|
# Show harddisk install in shell dash
|
||||||
|
sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop ""
|
||||||
|
fi
|
||||||
|
mkdir /home/liveuser/Desktop
|
||||||
|
cp /usr/share/applications/liveinst.desktop /home/liveuser/Desktop
|
||||||
|
|
||||||
|
# and mark it as executable
|
||||||
|
chmod +x /home/liveuser/Desktop/liveinst.desktop
|
||||||
|
|
||||||
|
# rebuild schema cache with any overrides we installed
|
||||||
|
glib-compile-schemas /usr/share/glib-2.0/schemas
|
||||||
|
|
||||||
|
# set up lightdm autologin
|
||||||
|
sed -i 's/^#autologin-user=.*/autologin-user=liveuser/' /etc/lightdm/lightdm.conf
|
||||||
|
sed -i 's/^#autologin-user-timeout=.*/autologin-user-timeout=0/' /etc/lightdm/lightdm.conf
|
||||||
|
#sed -i 's/^#show-language-selector=.*/show-language-selector=true/' /etc/lightdm/lightdm-gtk-greeter.conf
|
||||||
|
|
||||||
|
# set MATE as default session, otherwise login will fail
|
||||||
|
sed -i 's/^#user-session=.*/user-session=mate/' /etc/lightdm/lightdm.conf
|
||||||
|
|
||||||
|
# Turn off PackageKit-command-not-found while uninstalled
|
||||||
|
if [ -f /etc/PackageKit/CommandNotFound.conf ]; then
|
||||||
|
sed -i -e 's/^SoftwareSourceSearch=true/SoftwareSourceSearch=false/' /etc/PackageKit/CommandNotFound.conf
|
||||||
|
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
|
||||||
|
chown -R liveuser:liveuser /home/liveuser/
|
||||||
|
restorecon -R /home/liveuser/
|
||||||
|
EOF
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -4,6 +4,13 @@
|
|||||||
%packages
|
%packages
|
||||||
|
|
||||||
# save some space
|
# save some space
|
||||||
|
-mpage
|
||||||
-hplip
|
-hplip
|
||||||
|
-isdn4k-utils
|
||||||
|
|
||||||
|
# scanning takes quite a bit of space :/
|
||||||
|
-xsane
|
||||||
|
-xsane-gimp
|
||||||
|
-sane-backends
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
# Maintained by x3mboy and the Fedora Robotics SIG:
|
# Maintained by the Fedora Robotics SIG:
|
||||||
# https://fedoraproject.org/wiki/SIGs/Robotics
|
# http://fedoraproject.org/wiki/SIGs/Robotics
|
||||||
# mailto:x3mboy@fedoraproject.org
|
|
||||||
# mailto:robotics@lists.fedoraproject.org
|
# mailto:robotics@lists.fedoraproject.org
|
||||||
|
|
||||||
%include fedora-live-base.ks
|
%include fedora-live-base.ks
|
||||||
@@ -11,8 +10,7 @@ part / --size 10752
|
|||||||
|
|
||||||
%packages
|
%packages
|
||||||
# Start with GNOME
|
# Start with GNOME
|
||||||
# Install workstation-product-environment to resolve RhBug:1891500
|
@gnome-desktop
|
||||||
@^workstation-product-environment
|
|
||||||
|
|
||||||
# Add robotics development packages
|
# Add robotics development packages
|
||||||
@robotics-suite
|
@robotics-suite
|
||||||
@@ -32,10 +30,9 @@ mercurial
|
|||||||
-@dial-up
|
-@dial-up
|
||||||
-@input-methods
|
-@input-methods
|
||||||
-@standard
|
-@standard
|
||||||
-@container-management
|
|
||||||
-@libreoffice
|
# Add a web browser
|
||||||
-@networkmanager-submodules
|
@firefox
|
||||||
-@workstation-product
|
|
||||||
|
|
||||||
# Remove office suite
|
# Remove office suite
|
||||||
-libreoffice-*
|
-libreoffice-*
|
||||||
@@ -60,6 +57,7 @@ mercurial
|
|||||||
|
|
||||||
# Help and art can be big, too
|
# Help and art can be big, too
|
||||||
-gnome-user-docs
|
-gnome-user-docs
|
||||||
|
-gnome-getting-started-docs
|
||||||
-evolution-help
|
-evolution-help
|
||||||
-desktop-backgrounds-basic
|
-desktop-backgrounds-basic
|
||||||
-*backgrounds-extras
|
-*backgrounds-extras
|
||||||
@@ -90,9 +88,9 @@ mercurial
|
|||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
# Rip the post-configuration from the live-desktop, set default shortcuts to IDEs
|
||||||
%post
|
%post
|
||||||
# Extend the post-configuration from the live-desktop, set default shortcuts to IDEs
|
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||||
cat >> /var/lib/livesys/livesys-session-extra << EOF
|
|
||||||
# disable screensaver locking
|
# disable screensaver locking
|
||||||
cat >> /usr/share/glib-2.0/schemas/org.gnome.desktop.screensaver.gschema.override << FOE
|
cat >> /usr/share/glib-2.0/schemas/org.gnome.desktop.screensaver.gschema.override << FOE
|
||||||
[org.gnome.desktop.screensaver]
|
[org.gnome.desktop.screensaver]
|
||||||
@@ -105,6 +103,12 @@ cat >> /usr/share/glib-2.0/schemas/org.gnome.desktop.lockdown.gschema.override <
|
|||||||
disable-lock-screen=true
|
disable-lock-screen=true
|
||||||
FOE
|
FOE
|
||||||
|
|
||||||
|
# disable updates plugin
|
||||||
|
cat >> /usr/share/glib-2.0/schemas/org.gnome.software.gschema.override << FOE
|
||||||
|
[org.gnome.software]
|
||||||
|
download-updates=false
|
||||||
|
FOE
|
||||||
|
|
||||||
# make the installer show up
|
# make the installer show up
|
||||||
if [ -f /usr/share/applications/liveinst.desktop ]; then
|
if [ -f /usr/share/applications/liveinst.desktop ]; then
|
||||||
# Show harddisk install in shell dash
|
# Show harddisk install in shell dash
|
||||||
@@ -122,5 +126,17 @@ fi
|
|||||||
# 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
|
||||||
|
|
||||||
|
# set up auto-login
|
||||||
|
cat > /etc/gdm/custom.conf << FOE
|
||||||
|
[daemon]
|
||||||
|
AutomaticLoginEnable=True
|
||||||
|
AutomaticLogin=liveuser
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# Turn off PackageKit-command-not-found while uninstalled
|
||||||
|
if [ -f /etc/PackageKit/CommandNotFound.conf ]; then
|
||||||
|
sed -i -e 's/^SoftwareSourceSearch=true/SoftwareSourceSearch=false/' /etc/PackageKit/CommandNotFound.conf
|
||||||
|
fi
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
%include fedora-scientific-common.ks
|
%include fedora-scientific-common.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 15000
|
part / --size 14500
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
# 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>
|
||||||
# JT Pennington <jt [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, especially to Christoph Wickert!
|
||||||
@@ -22,9 +21,7 @@
|
|||||||
part / --size 10240
|
part / --size 10240
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
# install env-group to resolve RhBug:1891500
|
@xfce-desktop
|
||||||
@^xfce-desktop-environment
|
|
||||||
|
|
||||||
@xfce-apps
|
@xfce-apps
|
||||||
|
|
||||||
# Security tools
|
# Security tools
|
||||||
@@ -102,7 +99,50 @@ PREFERRED=/usr/bin/startxfce4
|
|||||||
DISPLAYMANAGER=/usr/sbin/lightdm
|
DISPLAYMANAGER=/usr/sbin/lightdm
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# set livesys session type
|
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||||
sed -i 's/^livesys_session=.*/livesys_session="xfce"/' /etc/sysconfig/livesys
|
|
||||||
|
mkdir -p /home/liveuser/.config/xfce4
|
||||||
|
|
||||||
|
cat > /home/liveuser/.config/xfce4/helpers.rc << FOE
|
||||||
|
MailReader=sylpheed-claws
|
||||||
|
FileManager=Thunar
|
||||||
|
WebBrowser=midori
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# disable screensaver locking (#674410)
|
||||||
|
cat >> /home/liveuser/.xscreensaver << FOE
|
||||||
|
mode: off
|
||||||
|
lock: False
|
||||||
|
dpmsEnabled: False
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# deactivate xfconf-migration (#683161)
|
||||||
|
rm -f /etc/xdg/autostart/xfconf-migration-4.6.desktop || :
|
||||||
|
|
||||||
|
# deactivate xfce4-panel first-run dialog (#693569)
|
||||||
|
mkdir -p /home/liveuser/.config/xfce4/xfconf/xfce-perchannel-xml
|
||||||
|
cp /etc/xdg/xfce4/panel/default.xml /home/liveuser/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml
|
||||||
|
|
||||||
|
# set up lightdm autologin
|
||||||
|
sed -i 's/^#autologin-user=.*/autologin-user=liveuser/' /etc/lightdm/lightdm.conf
|
||||||
|
sed -i 's/^#autologin-user-timeout=.*/autologin-user-timeout=0/' /etc/lightdm/lightdm.conf
|
||||||
|
#sed -i 's/^#show-language-selector=.*/show-language-selector=true/' /etc/lightdm/lightdm-gtk-greeter.conf
|
||||||
|
|
||||||
|
# set Xfce as default session, otherwise login will fail
|
||||||
|
sed -i 's/^#user-session=.*/user-session=xfce/' /etc/lightdm/lightdm.conf
|
||||||
|
|
||||||
|
# Show harddisk install on the desktop
|
||||||
|
sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop
|
||||||
|
mkdir /home/liveuser/Desktop
|
||||||
|
cp /usr/share/applications/liveinst.desktop /home/liveuser/Desktop
|
||||||
|
|
||||||
|
# and mark it as executable (new Xfce security feature)
|
||||||
|
chmod +x /home/liveuser/Desktop/liveinst.desktop
|
||||||
|
|
||||||
|
# this goes at the end after all other changes.
|
||||||
|
chown -R liveuser:liveuser /home/liveuser
|
||||||
|
restorecon -R /home/liveuser
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -4,8 +4,7 @@
|
|||||||
# - A Sugar environment that you can carry in your pocket
|
# - A Sugar environment that you can carry in your pocket
|
||||||
#
|
#
|
||||||
# Maintainers:
|
# Maintainers:
|
||||||
# - Chihurumnaya Ibiam <ibiamchihurumnaya AT gmail DOT com>
|
# - Peter Robinson <pbrobinson AT gmail DOT com>
|
||||||
# - Alex Perez <aperez AT alexperez DOT com>
|
|
||||||
|
|
||||||
%include fedora-live-base.ks
|
%include fedora-live-base.ks
|
||||||
%include fedora-live-minimization.ks
|
%include fedora-live-minimization.ks
|
||||||
@@ -13,7 +12,37 @@
|
|||||||
|
|
||||||
%post
|
%post
|
||||||
|
|
||||||
# set livesys session type
|
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||||
sed -i 's/^livesys_session=.*/livesys_session="soas"/' /etc/sysconfig/livesys
|
# set up lightdm autologin
|
||||||
|
sed -i 's/^#autologin-user=.*/autologin-user=liveuser/' /etc/lightdm/lightdm.conf
|
||||||
|
sed -i 's/^#autologin-user-timeout=.*/autologin-user-timeout=0/' /etc/lightdm/lightdm.conf
|
||||||
|
#sed -i 's/^#show-language-selector=.*/show-language-selector=true/' /etc/lightdm/lightdm-gtk-greeter.conf
|
||||||
|
|
||||||
|
# set Sugar as default session, otherwise login will fail
|
||||||
|
sed -i 's/^#user-session=.*/user-session=sugar/' /etc/lightdm/lightdm.conf
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cat >> /etc/rc.d/init.d/livesys-late << EOF
|
||||||
|
|
||||||
|
# disable screensaver locking
|
||||||
|
cat >> /usr/share/glib-2.0/schemas/org.gnome.desktop.screensaver.gschema.override << FOE
|
||||||
|
[org.gnome.desktop.screensaver]
|
||||||
|
lock-enabled=false
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# and hide the lock screen option
|
||||||
|
cat >> /usr/share/glib-2.0/schemas/org.gnome.desktop.lockdown.gschema.override << FOE
|
||||||
|
[org.gnome.desktop.lockdown]
|
||||||
|
disable-lock-screen=true
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# rebuild schema cache with any overrides we installed
|
||||||
|
glib-compile-schemas /usr/share/glib-2.0/schemas
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
|
chmod 755 /etc/rc.d/init.d/livesys-late
|
||||||
|
/sbin/restorecon /etc/rc.d/init.d/livesys-late
|
||||||
|
/sbin/chkconfig --add livesys-late
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1,32 +0,0 @@
|
|||||||
# fedora-livecd-sway.ks
|
|
||||||
#
|
|
||||||
# Description:
|
|
||||||
# - Fedora Live Spin with the tiling window manager Sway
|
|
||||||
#
|
|
||||||
# Maintainer(s):
|
|
||||||
# - Aleksei Bavshin <alebastr89@gmail.com>
|
|
||||||
# - Jiří Konečný <jkonecny@redhat.com>
|
|
||||||
# - Anthony Rabbito <hello@anthonyrabbito.com>
|
|
||||||
# - Fabio Alessandro Locati <me@fale.io>
|
|
||||||
|
|
||||||
%include fedora-live-base.ks
|
|
||||||
%include fedora-live-minimization.ks
|
|
||||||
%include fedora-sway-common.ks
|
|
||||||
|
|
||||||
%packages
|
|
||||||
# To be able to show installation instructions on background
|
|
||||||
nwg-wrapper
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post
|
|
||||||
# create /etc/sysconfig/desktop (needed for installation)
|
|
||||||
cat > /etc/sysconfig/desktop <<EOF
|
|
||||||
PREFERRED=/usr/bin/sway
|
|
||||||
DISPLAYMANAGER=/bin/sddm
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# set livesys session type
|
|
||||||
sed -i 's/^livesys_session=.*/livesys_session="sway"/' /etc/sysconfig/livesys
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
@@ -10,11 +10,87 @@
|
|||||||
#
|
#
|
||||||
#include snippets/packagekit-cached-metadata.ks
|
#include snippets/packagekit-cached-metadata.ks
|
||||||
|
|
||||||
part / --size 7750
|
part / --size 7680
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
|
||||||
# set livesys session type
|
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||||
sed -i 's/^livesys_session=.*/livesys_session="gnome"/' /etc/sysconfig/livesys
|
|
||||||
|
|
||||||
|
# disable gnome-software automatically downloading updates
|
||||||
|
cat >> /usr/share/glib-2.0/schemas/org.gnome.software.gschema.override << FOE
|
||||||
|
[org.gnome.software]
|
||||||
|
download-updates=false
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# don't autostart gnome-software session service
|
||||||
|
rm -f /etc/xdg/autostart/gnome-software-service.desktop
|
||||||
|
|
||||||
|
# disable the gnome-software shell search provider
|
||||||
|
cat >> /usr/share/gnome-shell/search-providers/org.gnome.Software-search-provider.ini << FOE
|
||||||
|
DefaultDisabled=true
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# don't run gnome-initial-setup
|
||||||
|
mkdir ~liveuser/.config
|
||||||
|
touch ~liveuser/.config/gnome-initial-setup-done
|
||||||
|
|
||||||
|
# suppress anaconda spokes redundant with gnome-initial-setup
|
||||||
|
cat >> /etc/sysconfig/anaconda << FOE
|
||||||
|
[NetworkSpoke]
|
||||||
|
visited=1
|
||||||
|
|
||||||
|
[PasswordSpoke]
|
||||||
|
visited=1
|
||||||
|
|
||||||
|
[UserSpoke]
|
||||||
|
visited=1
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# make the installer show up
|
||||||
|
if [ -f /usr/share/applications/liveinst.desktop ]; then
|
||||||
|
# Show harddisk install in shell dash
|
||||||
|
sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop ""
|
||||||
|
# need to move it to anaconda.desktop to make shell happy
|
||||||
|
mv /usr/share/applications/liveinst.desktop /usr/share/applications/anaconda.desktop
|
||||||
|
|
||||||
|
cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
|
||||||
|
[org.gnome.shell]
|
||||||
|
favorite-apps=['firefox.desktop', 'org.gnome.Calendar.desktop', 'rhythmbox.desktop', 'org.gnome.Photos.desktop', 'org.gnome.Nautilus.desktop', 'anaconda.desktop']
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# Make the welcome screen show up
|
||||||
|
if [ -f /usr/share/anaconda/gnome/fedora-welcome.desktop ]; then
|
||||||
|
mkdir -p ~liveuser/.config/autostart
|
||||||
|
cp /usr/share/anaconda/gnome/fedora-welcome.desktop /usr/share/applications/
|
||||||
|
cp /usr/share/anaconda/gnome/fedora-welcome.desktop ~liveuser/.config/autostart/
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Copy Anaconda branding in place
|
||||||
|
if [ -d /usr/share/lorax/product/usr/share/anaconda ]; then
|
||||||
|
cp -a /usr/share/lorax/product/* /
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# rebuild schema cache with any overrides we installed
|
||||||
|
glib-compile-schemas /usr/share/glib-2.0/schemas
|
||||||
|
|
||||||
|
# set up auto-login
|
||||||
|
cat > /etc/gdm/custom.conf << FOE
|
||||||
|
[daemon]
|
||||||
|
AutomaticLoginEnable=True
|
||||||
|
AutomaticLogin=liveuser
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# Turn off PackageKit-command-not-found while uninstalled
|
||||||
|
if [ -f /etc/PackageKit/CommandNotFound.conf ]; then
|
||||||
|
sed -i -e 's/^SoftwareSourceSearch=true/SoftwareSourceSearch=false/' /etc/PackageKit/CommandNotFound.conf
|
||||||
|
fi
|
||||||
|
|
||||||
|
# make sure to set the right permissions and selinux contexts
|
||||||
|
chown -R liveuser:liveuser /home/liveuser/
|
||||||
|
restorecon -R /home/liveuser/
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -26,8 +26,54 @@ PREFERRED=/usr/bin/startxfce4
|
|||||||
DISPLAYMANAGER=/usr/sbin/lightdm
|
DISPLAYMANAGER=/usr/sbin/lightdm
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# set livesys session type
|
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||||
sed -i 's/^livesys_session=.*/livesys_session="xfce"/' /etc/sysconfig/livesys
|
|
||||||
|
mkdir -p /home/liveuser/.config/xfce4
|
||||||
|
|
||||||
|
cat > /home/liveuser/.config/xfce4/helpers.rc << FOE
|
||||||
|
MailReader=sylpheed-claws
|
||||||
|
FileManager=Thunar
|
||||||
|
WebBrowser=firefox
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# disable screensaver locking (#674410)
|
||||||
|
cat >> /home/liveuser/.xscreensaver << FOE
|
||||||
|
mode: off
|
||||||
|
lock: False
|
||||||
|
dpmsEnabled: False
|
||||||
|
FOE
|
||||||
|
|
||||||
|
# deactivate xfconf-migration (#683161)
|
||||||
|
rm -f /etc/xdg/autostart/xfconf-migration-4.6.desktop || :
|
||||||
|
|
||||||
|
# deactivate xfce4-panel first-run dialog (#693569)
|
||||||
|
mkdir -p /home/liveuser/.config/xfce4/xfconf/xfce-perchannel-xml
|
||||||
|
cp /etc/xdg/xfce4/panel/default.xml /home/liveuser/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml
|
||||||
|
|
||||||
|
# set up lightdm autologin
|
||||||
|
sed -i 's/^#autologin-user=.*/autologin-user=liveuser/' /etc/lightdm/lightdm.conf
|
||||||
|
sed -i 's/^#autologin-user-timeout=.*/autologin-user-timeout=0/' /etc/lightdm/lightdm.conf
|
||||||
|
#sed -i 's/^#show-language-selector=.*/show-language-selector=true/' /etc/lightdm/lightdm-gtk-greeter.conf
|
||||||
|
|
||||||
|
# set Xfce as default session, otherwise login will fail
|
||||||
|
sed -i 's/^#user-session=.*/user-session=xfce/' /etc/lightdm/lightdm.conf
|
||||||
|
|
||||||
|
# Show harddisk install on the desktop
|
||||||
|
sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop
|
||||||
|
mkdir /home/liveuser/Desktop
|
||||||
|
cp /usr/share/applications/liveinst.desktop /home/liveuser/Desktop
|
||||||
|
|
||||||
|
# no updater applet in live environment
|
||||||
|
rm -f /etc/xdg/autostart/org.mageia.dnfdragora-updater.desktop
|
||||||
|
|
||||||
|
# and mark it as executable (new Xfce security feature)
|
||||||
|
chmod +x /home/liveuser/Desktop/liveinst.desktop
|
||||||
|
|
||||||
|
# this goes at the end after all other changes.
|
||||||
|
chown -R liveuser:liveuser /home/liveuser
|
||||||
|
restorecon -R /home/liveuser
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -8,12 +8,11 @@
|
|||||||
|
|
||||||
%packages
|
%packages
|
||||||
### LXDE desktop
|
### LXDE desktop
|
||||||
# install env-group to resolve RhBug:1891500
|
@lxde-desktop
|
||||||
@^lxde-desktop-environment
|
|
||||||
|
|
||||||
@lxde-apps
|
@lxde-apps
|
||||||
@lxde-media
|
@lxde-media
|
||||||
@lxde-office
|
@lxde-office
|
||||||
|
@networkmanager-submodules
|
||||||
|
|
||||||
# FIXME: can be omitted once comps is updated
|
# FIXME: can be omitted once comps is updated
|
||||||
midori
|
midori
|
||||||
@@ -40,7 +39,6 @@ metacity
|
|||||||
#-words
|
#-words
|
||||||
|
|
||||||
# save some space
|
# save some space
|
||||||
-@admin-tools
|
|
||||||
-autofs
|
-autofs
|
||||||
-acpid
|
-acpid
|
||||||
-gimp-help
|
-gimp-help
|
||||||
|
|||||||
@@ -9,11 +9,10 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
# install env-group to resolve RhBug:1891500
|
@lxqt
|
||||||
@^lxqt-desktop-environment
|
|
||||||
|
|
||||||
@lxqt-apps
|
@lxqt-apps
|
||||||
@lxqt-media
|
@lxqt-media
|
||||||
|
@networkmanager-submodules
|
||||||
|
|
||||||
# for nm applet
|
# for nm applet
|
||||||
gnome-keyring
|
gnome-keyring
|
||||||
@@ -44,7 +43,6 @@ wqy-microhei-fonts # a compact CJK font, to replace:
|
|||||||
|
|
||||||
# remove input methods to free space
|
# remove input methods to free space
|
||||||
-@input-methods
|
-@input-methods
|
||||||
-@admin-tools
|
|
||||||
-scim*
|
-scim*
|
||||||
-m17n*
|
-m17n*
|
||||||
# Temporary include ibus to workaround RHBZ 1633225
|
# Temporary include ibus to workaround RHBZ 1633225
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
%packages
|
%packages
|
||||||
# install env-group to resolve RhBug:1891500
|
|
||||||
@^mate-desktop-environment
|
|
||||||
|
|
||||||
fedora-release-matecompiz
|
fedora-release-matecompiz
|
||||||
|
@mate
|
||||||
compiz
|
compiz
|
||||||
compiz-plugins-main
|
compiz-plugins-main
|
||||||
compiz-plugins-extra
|
compiz-plugins-extra
|
||||||
@@ -16,16 +14,11 @@ simple-ccsm
|
|||||||
emerald-themes
|
emerald-themes
|
||||||
emerald
|
emerald
|
||||||
fusion-icon
|
fusion-icon
|
||||||
|
@networkmanager-submodules
|
||||||
|
|
||||||
# blacklist applications which breaks mate-desktop
|
# blacklist applications which breaks mate-desktop
|
||||||
-audacious
|
-audacious
|
||||||
|
|
||||||
# see https://bugzilla.redhat.com/show_bug.cgi?id=2068699
|
|
||||||
# and https://bugzilla.redhat.com/show_bug.cgi?id=1933494
|
|
||||||
# use earlyoom instead of systemd-oomd-defaults
|
|
||||||
earlyoom
|
|
||||||
-systemd-oomd-defaults
|
|
||||||
|
|
||||||
# office
|
# office
|
||||||
@libreoffice
|
@libreoffice
|
||||||
|
|
||||||
@@ -38,7 +31,6 @@ nss-mdns
|
|||||||
|
|
||||||
# Drop things for size
|
# Drop things for size
|
||||||
-@3d-printing
|
-@3d-printing
|
||||||
-@admin-tools
|
|
||||||
-brasero
|
-brasero
|
||||||
-fedora-icon-theme
|
-fedora-icon-theme
|
||||||
-gnome-icon-theme
|
-gnome-icon-theme
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
%packages
|
%packages
|
||||||
microdnf
|
|
||||||
-@standard
|
-@standard
|
||||||
-initial-setup-gui
|
-initial-setup-gui
|
||||||
-generic-release*
|
-generic-release*
|
||||||
|
|||||||
27
fedora-modular-arm-server.ks
Normal file
27
fedora-modular-arm-server.ks
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
|
||||||
|
# server defaults to xfs for / so lets do so on arm also
|
||||||
|
part / --size=2500 --fstype xfs
|
||||||
|
|
||||||
|
%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*
|
||||||
|
fedora-modular-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
|
||||||
|
|
||||||
@@ -62,7 +62,6 @@ if [[ $arch == "aarch64" ]] || [[ $arch == "armv7l" ]]; then
|
|||||||
if [[ $arch == "aarch64" ]]; then
|
if [[ $arch == "aarch64" ]]; then
|
||||||
cp -P /usr/share/uboot/rpi_3/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
cp -P /usr/share/uboot/rpi_3/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
||||||
cp -P /usr/share/uboot/rpi_4/u-boot.bin /boot/efi/rpi4-u-boot.bin
|
cp -P /usr/share/uboot/rpi_4/u-boot.bin /boot/efi/rpi4-u-boot.bin
|
||||||
cp -P /usr/share/uboot/rpi_arm64/u-boot.bin /boot/efi/rpi-u-boot.bin
|
|
||||||
else
|
else
|
||||||
cp -P /usr/share/uboot/rpi_2/u-boot.bin /boot/efi/rpi2-u-boot.bin
|
cp -P /usr/share/uboot/rpi_2/u-boot.bin /boot/efi/rpi2-u-boot.bin
|
||||||
cp -P /usr/share/uboot/rpi_3_32b/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
cp -P /usr/share/uboot/rpi_3_32b/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# Description: Common gnome based configuration for NeuroFedora spin images.
|
# Description: Common gnome based configuration for NeuroFedora spin images.
|
||||||
#
|
#
|
||||||
# Maintained by the NeuroFedora SIG:
|
# Maintained by the NeuroFedora SIG:
|
||||||
# https://neuro.fedoraproject.org
|
# https://fedoraproject.org/wiki/SIGs/NeuroFedora
|
||||||
# mailto:neuro-sig@lists.fedoraproject.org
|
# mailto:neuro-sig@lists.fedoraproject.org
|
||||||
|
|
||||||
# Please specify the individual package sets in their own ks files:
|
# Please specify the individual package sets in their own ks files:
|
||||||
|
|||||||
@@ -1,13 +0,0 @@
|
|||||||
# fedora-phosh-common.ks
|
|
||||||
#
|
|
||||||
# Description:
|
|
||||||
# - Fedora Disk image Spin with the phosh window manager
|
|
||||||
#
|
|
||||||
# Maintainer(s):
|
|
||||||
# - Kevin Fenzi <kevin@scrye.com>
|
|
||||||
|
|
||||||
%packages
|
|
||||||
# install env-group to resolve RhBug:1891500
|
|
||||||
@^phosh-desktop-environment
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -27,19 +27,9 @@ wget
|
|||||||
-python3.6
|
-python3.6
|
||||||
-python3.7
|
-python3.7
|
||||||
-python3.8
|
-python3.8
|
||||||
-python3.9
|
|
||||||
-python3.10
|
|
||||||
-pypy
|
-pypy
|
||||||
|
|
||||||
# Remove LaTeX, see https://bugzilla.redhat.com/show_bug.cgi?id=1862450
|
# Remove LaTeX, see https://bugzilla.redhat.com/show_bug.cgi?id=1862450
|
||||||
# and https://bugzilla.redhat.com/show_bug.cgi?id=1902354
|
|
||||||
-texlive-base
|
|
||||||
-texlive-latex
|
-texlive-latex
|
||||||
|
|
||||||
# Remove gdal recommended by networkx, brings in close to 600M of proj data
|
|
||||||
# Also explicitly list proj to make sure both packages are gone
|
|
||||||
# https://lists.fedoraproject.org/archives/list/python-devel@lists.fedoraproject.org/thread/LGC5IMMHZ4DM7GQNPAFC6GU362PPTN7O/
|
|
||||||
-python3-gdal
|
|
||||||
-proj
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -35,9 +35,6 @@ python3-pillow-tk
|
|||||||
# This is no longer workstation
|
# This is no longer workstation
|
||||||
-@workstation-product
|
-@workstation-product
|
||||||
|
|
||||||
# But we want to keep the Fedora desktop backgrounds
|
|
||||||
desktop-backgrounds-gnome
|
|
||||||
|
|
||||||
# Add a web browser
|
# Add a web browser
|
||||||
@firefox
|
@firefox
|
||||||
|
|
||||||
@@ -48,7 +45,7 @@ desktop-backgrounds-gnome
|
|||||||
|
|
||||||
# Drop the Java plugin and Java
|
# Drop the Java plugin and Java
|
||||||
-icedtea-web
|
-icedtea-web
|
||||||
-*openjdk*
|
-java*
|
||||||
|
|
||||||
# No printing
|
# No printing
|
||||||
-@printing
|
-@printing
|
||||||
@@ -61,6 +58,7 @@ desktop-backgrounds-gnome
|
|||||||
|
|
||||||
# Help and art can be big, too
|
# Help and art can be big, too
|
||||||
-gnome-user-docs
|
-gnome-user-docs
|
||||||
|
-gnome-getting-started-docs
|
||||||
-desktop-backgrounds-basic
|
-desktop-backgrounds-basic
|
||||||
-*backgrounds-extras
|
-*backgrounds-extras
|
||||||
|
|
||||||
@@ -93,9 +91,6 @@ desktop-backgrounds-gnome
|
|||||||
-system-config-services
|
-system-config-services
|
||||||
-policycoreutils-gui
|
-policycoreutils-gui
|
||||||
|
|
||||||
# Inkscape is too big to be included
|
|
||||||
-inkscape
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# Exactly one of the following should be uncommented
|
# Exactly one of the following should be uncommented
|
||||||
|
|
||||||
# For the master branch the following should be uncommented
|
# For the master branch the following should be uncommented
|
||||||
#%include fedora-repo-rawhide.ks
|
# %include fedora-repo-rawhide.ks
|
||||||
|
|
||||||
# For non-master branches the following should be uncommented
|
# For non-master branches the following should be uncommented
|
||||||
%include fedora-repo-not-rawhide.ks
|
%include fedora-repo-not-rawhide.ks
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ python3-networkx
|
|||||||
python3-pandas
|
python3-pandas
|
||||||
|
|
||||||
# matplotlib backends
|
# matplotlib backends
|
||||||
python3-matplotlib-qt5
|
python3-matplotlib-qt4
|
||||||
python3-matplotlib-tk
|
python3-matplotlib-tk
|
||||||
|
|
||||||
# Include Java development tools
|
# Include Java development tools
|
||||||
@@ -61,6 +61,12 @@ julia
|
|||||||
julia-doc
|
julia-doc
|
||||||
julia-devel
|
julia-devel
|
||||||
|
|
||||||
|
# IDEs for the IDE folks
|
||||||
|
@eclipse
|
||||||
|
|
||||||
|
# Workaround for https://pagure.io/releng/issue/7814
|
||||||
|
-eclipse-linuxtools-vagrant
|
||||||
|
|
||||||
python3-spyder
|
python3-spyder
|
||||||
python3-spyder-kernels
|
python3-spyder-kernels
|
||||||
|
|
||||||
@@ -132,6 +138,7 @@ screen
|
|||||||
tmux
|
tmux
|
||||||
rlwrap
|
rlwrap
|
||||||
hexchat
|
hexchat
|
||||||
|
shutter
|
||||||
fig2ps
|
fig2ps
|
||||||
bibtex2html
|
bibtex2html
|
||||||
hevea
|
hevea
|
||||||
|
|||||||
@@ -1,201 +0,0 @@
|
|||||||
# fedora-server-vm-full.ks (rel. 1.01)
|
|
||||||
# Kickstart file to build a Fedora Server Edition VM disk image.
|
|
||||||
# The image aims to resemble as close as technically possible the
|
|
||||||
# full features of a Fedora Server Edition in a virtual machine.
|
|
||||||
#
|
|
||||||
# The image uses GPT partition type as of default in Fedora 37.
|
|
||||||
#
|
|
||||||
# At first boot it opens a text mode basic configuration screen.
|
|
||||||
#
|
|
||||||
# This kickstart file is designed to be used with ImageFactory (in Koji).
|
|
||||||
#
|
|
||||||
# To build the image locally, you need to install ImageFactory and
|
|
||||||
# various additional helpers and configuration files.
|
|
||||||
# See Fedora Server Edition user documentation tutorial.
|
|
||||||
|
|
||||||
# Use text mode install
|
|
||||||
text
|
|
||||||
|
|
||||||
# Keyboard layouts
|
|
||||||
keyboard 'us'
|
|
||||||
|
|
||||||
# System language
|
|
||||||
lang en_US.UTF-8
|
|
||||||
|
|
||||||
# System timezone
|
|
||||||
# set time zone to GMT (Etcetera/UTC)
|
|
||||||
timezone Etc/UTC --utc
|
|
||||||
|
|
||||||
|
|
||||||
# Root password
|
|
||||||
rootpw --iscrypted --lock locked
|
|
||||||
|
|
||||||
# SELinux configuration
|
|
||||||
selinux --enforcing
|
|
||||||
|
|
||||||
|
|
||||||
# System bootloader configuration
|
|
||||||
bootloader --location=mbr --timeout=1 --append="console=tty1 console=ttyS0,115200n8"
|
|
||||||
|
|
||||||
# Network information
|
|
||||||
network --bootproto=dhcp --device=link --activate --onboot=on
|
|
||||||
|
|
||||||
# Firewall configuration
|
|
||||||
firewall --enabled --service=mdns
|
|
||||||
|
|
||||||
|
|
||||||
# System services
|
|
||||||
services --enabled="sshd,NetworkManager,chronyd,initial-setup"
|
|
||||||
|
|
||||||
# Run the Setup Agent on first boot
|
|
||||||
firstboot --reconfig
|
|
||||||
|
|
||||||
# Partition Information. Use GPT by default (since Fedora 37)
|
|
||||||
# Resemble the Partitioning used for Fedora Server Install media
|
|
||||||
clearpart --all --initlabel --disklabel=gpt
|
|
||||||
reqpart --add-boot
|
|
||||||
part pv.007 --size=4000 --grow
|
|
||||||
volgroup sysvg pv.007
|
|
||||||
logvol / --vgname=sysvg --size=4000 --grow --maxsize=16000 --fstype=xfs --name=root --label=sysroot
|
|
||||||
|
|
||||||
|
|
||||||
# Include URLs for network installation dynamically, dependent on Fedora release
|
|
||||||
# and imagefactory runtime environment
|
|
||||||
%include fedora-repo.ks
|
|
||||||
|
|
||||||
# Shutdown after installation
|
|
||||||
shutdown
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
##### begin package list #############################################
|
|
||||||
%packages --inst-langs=en
|
|
||||||
|
|
||||||
@server-product
|
|
||||||
@core
|
|
||||||
@headless-management
|
|
||||||
@standard
|
|
||||||
@networkmanager-submodules
|
|
||||||
# container management is an optional install item on disk media.
|
|
||||||
# Install options not available with VMs. So we don't include it
|
|
||||||
# despite trying to resemble a DVD installation as close as possible.
|
|
||||||
##@container-management
|
|
||||||
@domain-client
|
|
||||||
@guest-agents
|
|
||||||
|
|
||||||
# All arm-tools packages install on aarch64/armhfp only
|
|
||||||
# TODO: on a x86_64 devel environment are @arm-tools not available
|
|
||||||
# and cause a build error.
|
|
||||||
# @arm-tools
|
|
||||||
|
|
||||||
# Standard Fedora Package Groups
|
|
||||||
## dracut-config-generic ## included in =core=
|
|
||||||
glibc-all-langpacks
|
|
||||||
initial-setup
|
|
||||||
kernel-core
|
|
||||||
-dracut-config-rescue
|
|
||||||
-generic-release*
|
|
||||||
-initial-setup-gui
|
|
||||||
-kernel
|
|
||||||
-linux-firmware
|
|
||||||
-plymouth
|
|
||||||
# pulled in by @standard
|
|
||||||
-smartmontools
|
|
||||||
-smartmontools-selinux
|
|
||||||
|
|
||||||
%end
|
|
||||||
##### end package list ###############################################
|
|
||||||
|
|
||||||
|
|
||||||
##### begin kickstart post script ####################################
|
|
||||||
%post --erroronfail --log=/root/anaconda-post-1.log
|
|
||||||
|
|
||||||
# Find the architecture we are on
|
|
||||||
arch=$(uname -m)
|
|
||||||
|
|
||||||
# Import RPM GPG key, during installation saved in /etc/pki
|
|
||||||
echo "Import RPM GPG key"
|
|
||||||
releasever=$(rpm --eval '%{fedora}')
|
|
||||||
basearch=$(uname -i)
|
|
||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
|
||||||
|
|
||||||
# See the systemd-random-seed.service man page that says:
|
|
||||||
# " It is recommended to remove the random seed from OS images intended
|
|
||||||
# for replication on multiple systems"
|
|
||||||
# The newly installed instance should make it's own
|
|
||||||
echo "Removing random-seed so it's not the same in every image."
|
|
||||||
rm -f /var/lib/systemd/random-seed
|
|
||||||
|
|
||||||
# When we build the image a networking config file gets left behind.
|
|
||||||
# Let's clean it up.
|
|
||||||
echo "Cleanup leftover networking configuration"
|
|
||||||
rm -f /etc/NetworkManager/system-connections/*.nmconnection
|
|
||||||
|
|
||||||
# Truncate the /etc/resolv.conf left over from NetworkManager during the
|
|
||||||
# kickstart because the DNS server is environment specific.
|
|
||||||
truncate -s 0 /etc/resolv.conf
|
|
||||||
|
|
||||||
echo "Cleaning repodata to save space."
|
|
||||||
dnf clean all
|
|
||||||
|
|
||||||
# linux-firmware is installed by default and is quite large. As of mid 2020:
|
|
||||||
# Total download size: 97 M
|
|
||||||
# Installed size: 268 M
|
|
||||||
# Not needed in virtual environment.
|
|
||||||
echo "Removing linux-firmware package."
|
|
||||||
rpm -e linux-firmware
|
|
||||||
|
|
||||||
# Will ever anybody see this?
|
|
||||||
echo "Packages within this disk image"
|
|
||||||
rpm -qa --qf '%{size}\t%{name}-%{version}-%{release}.%{arch}\n' |sort -rn
|
|
||||||
|
|
||||||
# Note that running rpm recreates the rpm db files which aren't needed or wanted
|
|
||||||
rm -f /var/lib/rpm/__db*
|
|
||||||
|
|
||||||
|
|
||||||
# Do we need a serial terminal with a VM?
|
|
||||||
if [[ $arch == "aarch64" ]] || [[ $arch == "armv7l" ]]; then
|
|
||||||
# Anaconda adds console=tty0 to the grub boot line on all images. this is problematic
|
|
||||||
# when you are using fedora via serial console as you do not get any output post grub
|
|
||||||
# linux does a good job of knowing what consoles need to be enabled.
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=2022757
|
|
||||||
sed -i -e 's|console=tty0||g' /boot/loader/entries/*conf
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
# Remove machine-id on pre generated images
|
|
||||||
rm -f /etc/machine-id
|
|
||||||
touch /etc/machine-id
|
|
||||||
|
|
||||||
%end
|
|
||||||
##### end kickstart post script #####################################
|
|
||||||
|
|
||||||
|
|
||||||
##### begin custom post script (after base) #########################
|
|
||||||
%post
|
|
||||||
|
|
||||||
echo "Zeroing out empty space."
|
|
||||||
# Create zeros file with nodatacow and no compression
|
|
||||||
touch /var/tmp/zeros
|
|
||||||
chattr +C /var/tmp/zeros
|
|
||||||
# This forces the filesystem to reclaim space from deleted files
|
|
||||||
dd bs=1M if=/dev/zero of=/var/tmp/zeros || :
|
|
||||||
echo "(Don't worry -- that out-of-space error was expected.)"
|
|
||||||
# Force sync to disk
|
|
||||||
sync /
|
|
||||||
rm -f /var/tmp/zeros
|
|
||||||
sync /
|
|
||||||
|
|
||||||
# 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 .
|
|
||||||
|
|
||||||
# When we build the image /var/log gets populated.
|
|
||||||
# Let's clean it up.
|
|
||||||
echo "Cleanup leftover in /var/log"
|
|
||||||
rm -rf /var/log/*
|
|
||||||
|
|
||||||
%end
|
|
||||||
##### end custom post script ########################################
|
|
||||||
@@ -4,17 +4,15 @@
|
|||||||
# - A Sugar environment that you can carry in your pocket
|
# - A Sugar environment that you can carry in your pocket
|
||||||
#
|
#
|
||||||
# Maintainers:
|
# Maintainers:
|
||||||
# - Chihurumnaya Ibiam <ibiamchihurumnaya AT gmail DOT com>
|
# - Peter Robinson <pbrobinson AT gmail DOT com>
|
||||||
# - Alex Perez <aperez AT alexperez DOT com>
|
|
||||||
|
|
||||||
firewall --enabled --service=mdns,presence
|
firewall --enabled --service=mdns,presence
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
# install env-group to resolve RhBug:1891500
|
|
||||||
@^sugar-desktop-environment
|
|
||||||
|
|
||||||
# == Core Sugar Platform ==
|
# == Core Sugar Platform ==
|
||||||
fedora-release-soas
|
fedora-release-soas
|
||||||
|
@sugar-desktop
|
||||||
|
|
||||||
# explicitly remove a bunch of extra stuff
|
# explicitly remove a bunch of extra stuff
|
||||||
-openbox
|
-openbox
|
||||||
@@ -41,6 +39,7 @@ fedora-release-soas
|
|||||||
-hyperv-daemons
|
-hyperv-daemons
|
||||||
-sane-backends
|
-sane-backends
|
||||||
-sane-backends-drivers-scanners
|
-sane-backends-drivers-scanners
|
||||||
|
-chkconfig
|
||||||
-dhcp-client
|
-dhcp-client
|
||||||
-gcc-gdb-plugin
|
-gcc-gdb-plugin
|
||||||
-gcc
|
-gcc
|
||||||
@@ -53,6 +52,12 @@ aajohan-comfortaa-fonts
|
|||||||
sil-abyssinica-fonts
|
sil-abyssinica-fonts
|
||||||
vlgothic-fonts
|
vlgothic-fonts
|
||||||
|
|
||||||
|
# Write breaks unless we do this (we don't need it anyway)
|
||||||
|
@input-methods
|
||||||
|
|
||||||
|
# Needed for wifi, bluetooth and WWAN connection support
|
||||||
|
@networkmanager-submodules
|
||||||
|
|
||||||
# Usefulness for DSL connections as per:
|
# Usefulness for DSL connections as per:
|
||||||
# http://bugs.sugarlabs.org/ticket/1951
|
# http://bugs.sugarlabs.org/ticket/1951
|
||||||
rp-pppoe
|
rp-pppoe
|
||||||
@@ -78,8 +83,7 @@ cat /etc/fedora-release >> /boot/olpc_build
|
|||||||
# Rebuild initrd for Sugar boot screen
|
# Rebuild initrd for Sugar boot screen
|
||||||
KERNEL_VERSION=$(rpm -q kernel --qf '%{version}-%{release}.%{arch}\n')
|
KERNEL_VERSION=$(rpm -q kernel --qf '%{version}-%{release}.%{arch}\n')
|
||||||
/usr/sbin/plymouth-set-default-theme sugar
|
/usr/sbin/plymouth-set-default-theme sugar
|
||||||
sed -i -r 's/(omit_dracutmodules\+\=.*) plymouth (.*)/\1 \2/' /etc/dracut.conf.d/99-liveos.conf
|
dracut -N -f /boot/initramfs-$KERNEL_VERSION.img $KERNEL_VERSION
|
||||||
dracut --force-add plymouth -N -f /boot/initramfs-$KERNEL_VERSION.img $KERNEL_VERSION
|
|
||||||
|
|
||||||
# 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*
|
||||||
@@ -106,18 +110,6 @@ show-logout=false
|
|||||||
[org.sugarlabs.power]
|
[org.sugarlabs.power]
|
||||||
automatic=true
|
automatic=true
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
|
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%post --nochroot
|
|
||||||
|
|
||||||
for n in initramfs initrd; do
|
|
||||||
for img in "$LIVE_ROOT/images/pxeboot/$n"* ; do
|
|
||||||
[ -e "$img" ] && cp -a "$INSTALL_ROOT"/boot/initramfs-*.img "$img"
|
|
||||||
done
|
|
||||||
done
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,17 +0,0 @@
|
|||||||
# fedora-livecd-sway.ks
|
|
||||||
#
|
|
||||||
# Description:
|
|
||||||
# - Fedora Live Spin with the tiling window manager Sway
|
|
||||||
#
|
|
||||||
# Maintainer(s):
|
|
||||||
# - Aleksei Bavshin <alebastr89@gmail.com>
|
|
||||||
# - Jiří Konečný <jkonecny@redhat.com>
|
|
||||||
# - Anthony Rabbito <hello@anthonyrabbito.com>
|
|
||||||
# - Fabio Alessandro Locati <me@fale.io>
|
|
||||||
|
|
||||||
%packages
|
|
||||||
fedora-release-sway
|
|
||||||
@^sway-desktop-environment
|
|
||||||
@firefox
|
|
||||||
@swaywm-extended
|
|
||||||
%end
|
|
||||||
@@ -5,8 +5,21 @@
|
|||||||
-@input-methods
|
-@input-methods
|
||||||
-@standard
|
-@standard
|
||||||
|
|
||||||
# Install workstation-product-environment to resolve RhBug:1891500
|
# Make sure to sync any additions / removals done here with
|
||||||
@^workstation-product-environment
|
# workstation-product-environment in comps
|
||||||
|
@base-x
|
||||||
|
@container-management
|
||||||
|
@core
|
||||||
|
@firefox
|
||||||
|
@fonts
|
||||||
|
@gnome-desktop
|
||||||
|
@guest-desktop-agents
|
||||||
|
@hardware-support
|
||||||
|
@libreoffice
|
||||||
|
@multimedia
|
||||||
|
@networkmanager-submodules
|
||||||
|
@printing
|
||||||
|
@workstation-product
|
||||||
|
|
||||||
# Exclude unwanted packages from @anaconda-tools group
|
# Exclude unwanted packages from @anaconda-tools group
|
||||||
-gfs2-utils
|
-gfs2-utils
|
||||||
|
|||||||
@@ -4,21 +4,27 @@
|
|||||||
# - Fedora Live Spin with the light-weight XFCE Desktop Environment
|
# - Fedora Live Spin with the light-weight XFCE Desktop Environment
|
||||||
#
|
#
|
||||||
# Maintainer(s):
|
# Maintainer(s):
|
||||||
|
# - Rahul Sundaram <sundaram@fedoraproject.org>
|
||||||
|
# - Christoph Wickert <cwickert@fedoraproject.org>
|
||||||
# - Kevin Fenzi <kevin@tummy.com>
|
# - Kevin Fenzi <kevin@tummy.com>
|
||||||
# - Adam Miller <maxamillion@fedoraproject.org>
|
# - Adam Miller <maxamillion@fedoraproject.org>
|
||||||
# - Mukundan Ragavan <nonamedotc@fedoraproject.org>
|
|
||||||
|
|
||||||
%packages
|
%packages
|
||||||
|
|
||||||
fedora-release-xfce
|
fedora-release-xfce
|
||||||
# install env-group to resolve RhBug:1891500
|
@networkmanager-submodules
|
||||||
@^xfce-desktop-environment
|
@xfce-desktop
|
||||||
|
|
||||||
@xfce-apps
|
@xfce-apps
|
||||||
@xfce-extra-plugins
|
@xfce-extra-plugins
|
||||||
@xfce-media
|
@xfce-media
|
||||||
@xfce-office
|
@xfce-office
|
||||||
|
|
||||||
|
# Admin tools are handy to have
|
||||||
|
@admin-tools
|
||||||
|
# Add some screensavers, people seem to like them
|
||||||
|
# Note that blank is still default.
|
||||||
|
xscreensaver-extras
|
||||||
wget
|
wget
|
||||||
system-config-printer
|
system-config-printer
|
||||||
|
|
||||||
@@ -29,6 +35,5 @@ system-config-printer
|
|||||||
-desktop-backgrounds-basic
|
-desktop-backgrounds-basic
|
||||||
-aspell-* # dictionaries are big
|
-aspell-* # dictionaries are big
|
||||||
-xfce4-sensors-plugin
|
-xfce4-sensors-plugin
|
||||||
-xfce4-eyes-plugin
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ imsettings
|
|||||||
%end
|
%end
|
||||||
|
|
||||||
%post
|
%post
|
||||||
cat >> /var/lib/livesys/livesys-session-extra << EOF
|
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||||
#### setting env and start ibus-deamon ####
|
#### setting env and start ibus-deamon ####
|
||||||
#mkdir /home/liveuser
|
#mkdir /home/liveuser
|
||||||
cat >> /home/liveuser/.bash_profile << FOE
|
cat >> /home/liveuser/.bash_profile << FOE
|
||||||
|
|||||||
@@ -21,26 +21,27 @@ fas = [ "grinnz" ]
|
|||||||
maintainers = [ "Dan Book" ]
|
maintainers = [ "Dan Book" ]
|
||||||
|
|
||||||
[spins.lxde.x86_64]
|
[spins.lxde.x86_64]
|
||||||
fas = [ "cwickert", "mtasaka" ]
|
fas = [ "cwickert" ]
|
||||||
maintainers = [ "Christoph Wickert", "Mamoru TASAKA" ]
|
maintainers = [ "Christoph Wickert" ]
|
||||||
[spins.lxde.armhfp]
|
[spins.lxde.armhfp]
|
||||||
fas = [ "cwickert", "mtasaka" ]
|
fas = [ "cwickert" ]
|
||||||
maintainers = [ "Christoph Wickert", "Mamoru TASAKA" ]
|
maintainers = [ "Christoph Wickert" ]
|
||||||
|
|
||||||
[spins.soas.x86_64]
|
[spins.soas.x86_64]
|
||||||
fas = [ "chimosky", "aperezbios" ]
|
fas = [ "chimosky", "pbrobinson" ]
|
||||||
maintainers = [ "Chihurumnaya Ibiam", "Alex Perez" ]
|
maintainers = [ "Chihurumnaya Ibiam", "Peter Robinson" ]
|
||||||
[spins.soas.armhfp]
|
[spins.soas.armhfp]
|
||||||
fas = [ "chimosky", "aperezbios", ]
|
fas = [ "chimosky", "pbrobinson" ]
|
||||||
maintainers = [ "Chihurumnaya Ibiam", "Alex Perez" ]
|
maintainers = [ "Chihurumnaya Ibiam", "Peter Robinson" ]
|
||||||
|
|
||||||
|
|
||||||
[labs.astronomy_kde.x86_64]
|
[labs.astronomy_kde.x86_64]
|
||||||
fas = [ "lupinix" ]
|
fas = [ "lupinix" ]
|
||||||
maintainers = [ "Christian Dersch" ]
|
maintainers = [ "Christian Dersch" ]
|
||||||
|
|
||||||
[labs.security.x86_64]
|
[labs.security.x86_64]
|
||||||
fas = [ "fab", "jsimon", "q5sys"]
|
fas = [ "fab", "jsimon" ]
|
||||||
maintainers = [ "Fabian Affolter", "Joerg Simon", "JT Pennington" ]
|
maintainers = [ "Fabian Affolter", "Joerg Simon" ]
|
||||||
|
|
||||||
[labs.comp_neuro.x86_64]
|
[labs.comp_neuro.x86_64]
|
||||||
fas = [ "bt0dotninja", "dan1mal", "ankursinha", "neuro-sig" ]
|
fas = [ "bt0dotninja", "dan1mal", "ankursinha", "neuro-sig" ]
|
||||||
@@ -51,12 +52,12 @@ fas = [ "luya" ]
|
|||||||
maintainers = [ "Luya Tshimbalanga" ]
|
maintainers = [ "Luya Tshimbalanga" ]
|
||||||
|
|
||||||
[labs.games.x86_64]
|
[labs.games.x86_64]
|
||||||
fas = [ "dagostinelli", "richardanaya" ]
|
fas = [ "dagostinelli" ]
|
||||||
maintainers = [ "Darryl T. Agostinelli", "Richard Anaya" ]
|
maintainers = [ "Darryl T. Agostinelli" ]
|
||||||
|
|
||||||
[labs.jam_kde.x86_64]
|
[labs.jam_kde.x86_64]
|
||||||
fas = [ "q5sys" ]
|
fas = [ "eeickmeyer" ]
|
||||||
maintainers = [ "JT Pennington" ]
|
maintainers = [ "Erich Eickmeyer" ]
|
||||||
|
|
||||||
[labs.python_classroom.x86_64]
|
[labs.python_classroom.x86_64]
|
||||||
fas = [ "churchyard", "python-sig" ]
|
fas = [ "churchyard", "python-sig" ]
|
||||||
@@ -69,23 +70,3 @@ maintainers = [ "SciTech SIG" ]
|
|||||||
[labs.scientific.x86_64]
|
[labs.scientific.x86_64]
|
||||||
fas = [ "scitech" ]
|
fas = [ "scitech" ]
|
||||||
maintainers = [ "SciTech SIG" ]
|
maintainers = [ "SciTech SIG" ]
|
||||||
|
|
||||||
[labs.robotics.x86_64]
|
|
||||||
fas = [ "x3mboy", "robotics-sig" ]
|
|
||||||
maintainers = [ "Eduard Lucena", "Robotics SIG" ]
|
|
||||||
|
|
||||||
[spins.i3.x86_64]
|
|
||||||
fas = [ "jflory7", "defolos", "nasirhm", "odilhao", "x3mboy" ]
|
|
||||||
maintainers = [ "Justin Flory", "Dan Čermák", "Nasir Hussain", "Odilon Junior", "Eduard Lucena" ]
|
|
||||||
|
|
||||||
[eln]
|
|
||||||
fas = [ "sgallagh", "tdawson", "asamalik" ]
|
|
||||||
maintainers = [ "Stephen Gallagher", "Troy Dawson", "Adam Samalik" ]
|
|
||||||
|
|
||||||
[spins.budgie.x86_64]
|
|
||||||
fas = [ "joshstrobl" ]
|
|
||||||
maintainers = [ "Joshua Strobl" ]
|
|
||||||
|
|
||||||
[spins.sway.x86_64]
|
|
||||||
fas = [ "alebastr", "jkonecny", "anthr76", "fale" ]
|
|
||||||
maintainers = [ "Aleksei Bavshin", "Jiří Konečný", "Anthony Rabbito", "Fabio Alessandro Locati" ]
|
|
||||||
|
|||||||
Reference in New Issue
Block a user