Compare commits

...

4 Commits

Author SHA1 Message Date
Neal Gompa
69c726f753 fedora-lxqt-common: Use sddm in x11 mode (#2188071)
LXQt isn't shipped with a Wayland compositor yet, so SDDM should
be configured to use X11.
2023-04-23 09:14:56 -04:00
Peter Boy
bb780fa1bb Fixed an incorrect delete command. 2023-03-25 14:41:42 -07:00
Joshua Strobl
e351fc2680 Add libreoffice and thunderbird for Budgie Spin 2023-03-11 18:16:59 +02:00
Adam Williamson
cad6175774 Drop retired packages from scientific and games kickstarts
bibtex2html (scientific) and gl-117 (games) got retired because
they were unmaintained.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2023-03-07 17:06:23 -08:00
5 changed files with 12 additions and 8 deletions

View File

@@ -11,6 +11,10 @@ fedora-release-budgie
# recommended apps
@budgie-desktop-apps
@libreoffice
libreoffice-draw
libreoffice-math
thunderbird
# Exclude unwanted packages from @anaconda-tools group
-gfs2-utils

View File

@@ -57,7 +57,6 @@ freecol
freedoom
freedroidrpg
frozen-bubble
gl-117
# glob2 - currently broken
lincity-ng
#tmw - currently broken

View File

@@ -18,6 +18,8 @@
# for nm applet
gnome-keyring
# for sddm
sddm-x11
# l10n
@lxqt-l10n

View File

@@ -133,7 +133,6 @@ tmux
rlwrap
hexchat
fig2ps
bibtex2html
hevea
#Include Mozilla Firefox

View File

@@ -1,4 +1,4 @@
# fedora-server-vm-full.ks (rel. 1.01)
# fedora-server-vm-full.ks (rel. 1.02)
# 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.
@@ -174,6 +174,11 @@ touch /etc/machine-id
##### begin custom post script (after base) #########################
%post
# When we build the image /var/log gets populated.
# Let's clean it up.
echo "Cleanup leftover in /var/log"
cd /var/log && find . -name \* -type f -delete
echo "Zeroing out empty space."
# Create zeros file with nodatacow and no compression
touch /var/tmp/zeros
@@ -192,10 +197,5 @@ 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 ########################################