spins removed from Beta
by Dennis Gilmore
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi All,
As Design Suite, Games and Security Spins were not signed off[1]
for Beta they have been removed from F20. They will need to reapply for
inclusion in F21.
Dennis
[1] http://fedoraproject.org/wiki/Releases/20/Spins
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.22 (GNU/Linux)
iQIcBAEBAgAGBQJSfYtiAAoJEH7ltONmPFDR2ZMP/36WFbwSnE+uZ+TyV0kjg1R+
PCmCrbYIp2V8fsaHkXNGiKgm9UlD5N/q8IqwtduvjAqshB2ziRcuJFgD8IlDp3Y3
Dp9NfqmYEzcUx6kETB4A+Fhm4xZWvxaBJ9j4rb37MIGh4buYXMnx3AIhppBUUNqB
yrugdItbwSuaIkfF9Owx5UM9TLqtyy/cJo/5IAcZ4vDcPTeeZcoDI+OBwCiX4b8a
gObe7t7S+VgayPJxo4u+bQWTeg1zuGErfbw0h+0LrTeQarpOJfZuIArvQa4c0BcB
2Xw0FsA9A9r281ZbGPpdj0RtqmJD+x/u96gMjzLyTCouBcHJZCuIfFpiTejIcnxp
QVzA3wCwUyd2EpMQ7k/dEQRZI91Cx9F8B3HZYSWcqTe+1dwBMRlZVazaCUIAXXPc
ttluoaYif85yvc9DfxQhYWwkkC5x44CeTpjHg1dASQ2rpoxMlkUrChO9K+ywal+w
FC2apcXAvYDK1jOSffAO91R5SLdle6DwbVEmoP/UQIc/GUmkyx1YubQ1SPR73xgd
M3XmLQ1ZdAqd0PbJCwCZu8fyScRTJuL1zthvlQzaa1hAO/6f2tHJ+5BpgrkrnxnT
q8O+0xJBkwXaph5qrfz5csLyLGDrWOko+RLUjjZ3CUz/c1uTqfYvTr9YAimWKzLP
KkLvuj4JouH3tjVpRxIv
=1wrx
-----END PGP SIGNATURE-----
4 years, 6 months
[spin-kickstarts/f21] ...and fix SDDM one more time: correct name of Plasma session
by Adam Williamson
commit 1dddaeebc48d8d865fb3397d4381033295b84de9
Author: Adam Williamson <awilliam(a)redhat.com>
Date: Thu Oct 23 12:18:11 2014 -0700
...and fix SDDM one more time: correct name of Plasma session
fedora-live-kde-base.ks | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/fedora-live-kde-base.ks b/fedora-live-kde-base.ks
index 7fd93b8..232fc9d 100644
--- a/fedora-live-kde-base.ks
+++ b/fedora-live-kde-base.ks
@@ -43,7 +43,7 @@ chown liveuser:liveuser /home/liveuser/.xsession
cat > /etc/sddm.conf << SDDM_EOF
[Autologin]
User=liveuser
-Session=plasma.desktop
+Session=kde-plasma.desktop
SDDM_EOF
# add liveinst.desktop to favorites menu
8 years, 7 months
[spin-kickstarts/f21] fix SDDM config write to not use 'EOF'
by Adam Williamson
commit 73543397cfa075ae60c0c0570478e3911a39bb57
Author: Adam Williamson <awilliam(a)redhat.com>
Date: Thu Oct 23 11:42:27 2014 -0700
fix SDDM config write to not use 'EOF'
It's nested in another cat << EOF, so can't use the same string.
fedora-live-kde-base.ks | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/fedora-live-kde-base.ks b/fedora-live-kde-base.ks
index 7602c56..7fd93b8 100644
--- a/fedora-live-kde-base.ks
+++ b/fedora-live-kde-base.ks
@@ -40,11 +40,11 @@ chmod a+x /home/liveuser/.xsession
chown liveuser:liveuser /home/liveuser/.xsession
# set up autologin for user liveuser
-cat > /etc/sddm.conf << EOF
+cat > /etc/sddm.conf << SDDM_EOF
[Autologin]
User=liveuser
Session=plasma.desktop
-EOF
+SDDM_EOF
# add liveinst.desktop to favorites menu
mkdir -p /home/liveuser/.kde/share/config/
8 years, 7 months
[spin-kickstarts/f21] update autologin conf for SDDM changes (from mbriza, #1149610)
by Adam Williamson
commit ab93ba68cb43fc95d841d357cc3885bb0c7582ea
Author: Adam Williamson <awilliam(a)redhat.com>
Date: Thu Oct 23 11:03:10 2014 -0700
update autologin conf for SDDM changes (from mbriza, #1149610)
fedora-live-kde-base.ks | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/fedora-live-kde-base.ks b/fedora-live-kde-base.ks
index 74ba8eb..7602c56 100644
--- a/fedora-live-kde-base.ks
+++ b/fedora-live-kde-base.ks
@@ -40,11 +40,11 @@ chmod a+x /home/liveuser/.xsession
chown liveuser:liveuser /home/liveuser/.xsession
# set up autologin for user liveuser
-sed -i 's/^AutoUser=.*/AutoUser=liveuser/' /etc/sddm.conf
-
-# set up user liveuser as default user and preselected user
-sed -i 's/^LastUser=.*/LastUser=liveuser/' /etc/sddm.conf
-sed -i 's/^LastSession=.*/LastSession=kde-plasma.desktop/' /etc/sddm.conf
+cat > /etc/sddm.conf << EOF
+[Autologin]
+User=liveuser
+Session=plasma.desktop
+EOF
# add liveinst.desktop to favorites menu
mkdir -p /home/liveuser/.kde/share/config/
8 years, 7 months
[spin-kickstarts] Revert "Setup mdadm to turn off homehost (#1156614)"
by Adam Williamson
commit bf3371ecfe7e23ad68a6a28d949274e711391996
Author: Adam Williamson <awilliam(a)redhat.com>
Date: Tue Oct 28 11:57:29 2014 -0700
Revert "Setup mdadm to turn off homehost (#1156614)"
This reverts commit 0bcbab3c718d5acf52315c11aa3e42d6b5d01368.
Per https://bugzilla.redhat.com/show_bug.cgi?id=1156614#c15 both
dlehman and I suspect it may be completely wrong, and it's not
strictly necessary right now, so let's leave it until dledford
clarifies.
fedora-live-base.ks | 6 ------
1 files changed, 0 insertions(+), 6 deletions(-)
---
diff --git a/fedora-live-base.ks b/fedora-live-base.ks
index 0810c5d..8c4899d 100644
--- a/fedora-live-base.ks
+++ b/fedora-live-base.ks
@@ -201,12 +201,6 @@ touch /.liveimg-configured
# https://bugzilla.redhat.com/show_bug.cgi?id=679486
echo "localhost" > /etc/hostname
-# Turn off mdadm homehost
-cat > /etc/mdadm.conf << FOE
-AUTO -all
-HOMEHOST <any>
-FOE
-
EOF
# bah, hal starts way too late
8 years, 7 months
[spin-kickstarts] Setup mdadm to turn off homehost (#1156614)
by Adam Williamson
commit 0bcbab3c718d5acf52315c11aa3e42d6b5d01368
Author: Brian C. Lane <bcl(a)redhat.com>
Date: Tue Oct 28 11:26:07 2014 -0700
Setup mdadm to turn off homehost (#1156614)
fedora-live-base.ks | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
---
diff --git a/fedora-live-base.ks b/fedora-live-base.ks
index 8c4899d..0810c5d 100644
--- a/fedora-live-base.ks
+++ b/fedora-live-base.ks
@@ -201,6 +201,12 @@ touch /.liveimg-configured
# https://bugzilla.redhat.com/show_bug.cgi?id=679486
echo "localhost" > /etc/hostname
+# Turn off mdadm homehost
+cat > /etc/mdadm.conf << FOE
+AUTO -all
+HOMEHOST <any>
+FOE
+
EOF
# bah, hal starts way too late
8 years, 7 months
Are we going to want to change live images to use overlayfs?
by Bruno Wolff III
While not a done deal just yet, there is a pull request for overlayfs for
3.18 that is likely to be accepted.
Live images currently use dm to do overlays, but this scheme fails badly
when the overlay space files up. overlayfs looks like it will fail more
gracefully when the upper filesystem fills up.
Is changing over to using overlayfs for live images something we'd want to
look at for f22?
Are there advantages to using dm over overlayfs? (For example in theory,
dm could be more space efficient by replacing just changed blocks rather
than whole files, but I am not sure that significant space would be
saved in practice.)
8 years, 7 months
[spin-kickstarts/f21] kde-live-kde: rely on @kde-office, @kde-education groups
by Rex Dieter
commit bf576a02b13f6f69a797c5415564081b8e275660
Author: Rex Dieter <rdieter(a)math.unl.edu>
Date: Sat Oct 25 11:09:34 2014 -0500
kde-live-kde: rely on @kde-office, @kde-education groups
instead of listing individual packages
fedora-live-kde.ks | 25 ++-----------------------
1 files changed, 2 insertions(+), 23 deletions(-)
---
diff --git a/fedora-live-kde.ks b/fedora-live-kde.ks
index f1861df..5f15394 100644
--- a/fedora-live-kde.ks
+++ b/fedora-live-kde.ks
@@ -2,7 +2,7 @@
#
# Description:
# - Fedora Live Spin with the K Desktop Environment (KDE), 2 GiB version
-# see fedora-livecd-kde.ks for the default 1 GiB version
+# see fedora-livecd-kde.ks for the default 1.4 GiB version
#
# Maintainer(s):
# - Sebastian Vahl <fedora(a)deadbabylon.de>
@@ -22,35 +22,14 @@ kde-wallpapers
# Additional packages that are not default in kde-desktop but useful
k3b # ~15 megs
-calligra
#kdeartwork # only include some parts of kdeartwork
-#twinkle # (~10 megs)
fuse
liveusb-creator
#pavucontrol # pavucontrol has duplicate functionality with kmix
krusader # file manager, more power-user-oriented than Dolphin (~4 megs)
# kdeedu apps
-blinken
-kalzium
-kanagram
-kgeography
-khangman
-kiten
-klettres
-ktouch
-kturtle
-kwordquiz
-parley
-step
-marble
-kstars
-kalgebra
-kbruch
-kig
-kmplot
-rocs
-cantor
+@kde-education
# Cantor backends
cantor-R # Cantor R backend, built against R-core at compile time
8 years, 7 months
[spin-kickstarts/f21] kde-livecd: rely on @kde-office, @kde-education groups
by Rex Dieter
commit 48ac6d329a120ab56d17b2ff729679c98c6ccf50
Author: Rex Dieter <rdieter(a)math.unl.edu>
Date: Sat Oct 25 14:19:51 2014 -0500
kde-livecd: rely on @kde-office, @kde-education groups
fedora-kde-packages.ks | 1 +
fedora-livecd-kde.ks | 8 +-------
2 files changed, 2 insertions(+), 7 deletions(-)
---
diff --git a/fedora-kde-packages.ks b/fedora-kde-packages.ks
index 67cae31..98caab3 100644
--- a/fedora-kde-packages.ks
+++ b/fedora-kde-packages.ks
@@ -2,6 +2,7 @@
@kde-apps
@kde-desktop
@kde-media
+@kde-office
@kde-telepathy
@networkmanager-submodules
diff --git a/fedora-livecd-kde.ks b/fedora-livecd-kde.ks
index 2007be7..d29de4f 100644
--- a/fedora-livecd-kde.ks
+++ b/fedora-livecd-kde.ks
@@ -19,7 +19,6 @@ part / --size=4096
# don't include these for now to fit on a cd
-desktop-backgrounds-basic
-kdeaccessibility*
--scribus # scribus is too big for the live images
-kdeartwork-screensavers # screensavers are not needed on live images
#-ktorrent # kget has also basic torrent features (~3 megs)
-digikam # digikam has duplicate functionality with gwenview (~28 megs)
@@ -28,14 +27,9 @@ part / --size=4096
#-kdeplasma-addons # ~16 megs
#-krusader # ~4 megs
-# Additional packages that are not default in kde-desktop but useful
+# Additional packages that are not default in kde-* groups, but useful
k3b # ~15 megs
--calligra # don't include whole calligra, just parts of it
-calligra-words
-calligra-sheets # ~1 megs
-calligra-stage # ~3 megs
#kdeartwork # only include some parts of kdeartwork
-#twinkle # (~10 megs)
fuse
liveusb-creator
8 years, 7 months
[spin-kickstarts] kde-livecd: rely on @kde-office, @kde-education groups
by Rex Dieter
commit 09c0f6195952b7325820fd21608edfacbf0d0ee7
Author: Rex Dieter <rdieter(a)math.unl.edu>
Date: Sat Oct 25 14:19:51 2014 -0500
kde-livecd: rely on @kde-office, @kde-education groups
fedora-kde-packages.ks | 1 +
fedora-livecd-kde.ks | 8 +-------
2 files changed, 2 insertions(+), 7 deletions(-)
---
diff --git a/fedora-kde-packages.ks b/fedora-kde-packages.ks
index 67cae31..98caab3 100644
--- a/fedora-kde-packages.ks
+++ b/fedora-kde-packages.ks
@@ -2,6 +2,7 @@
@kde-apps
@kde-desktop
@kde-media
+@kde-office
@kde-telepathy
@networkmanager-submodules
diff --git a/fedora-livecd-kde.ks b/fedora-livecd-kde.ks
index 2007be7..d29de4f 100644
--- a/fedora-livecd-kde.ks
+++ b/fedora-livecd-kde.ks
@@ -19,7 +19,6 @@ part / --size=4096
# don't include these for now to fit on a cd
-desktop-backgrounds-basic
-kdeaccessibility*
--scribus # scribus is too big for the live images
-kdeartwork-screensavers # screensavers are not needed on live images
#-ktorrent # kget has also basic torrent features (~3 megs)
-digikam # digikam has duplicate functionality with gwenview (~28 megs)
@@ -28,14 +27,9 @@ part / --size=4096
#-kdeplasma-addons # ~16 megs
#-krusader # ~4 megs
-# Additional packages that are not default in kde-desktop but useful
+# Additional packages that are not default in kde-* groups, but useful
k3b # ~15 megs
--calligra # don't include whole calligra, just parts of it
-calligra-words
-calligra-sheets # ~1 megs
-calligra-stage # ~3 megs
#kdeartwork # only include some parts of kdeartwork
-#twinkle # (~10 megs)
fuse
liveusb-creator
8 years, 7 months