JBoss Spin
by Gerard Ryan
Hi Spins SIG,
I'm doing a Fedora JBoss Spin as my GSOC project at the moment. Most of
my efforts so far have been in packaging stuff to put into the spin, and
only recently has there started to be enough stuff to really call it a
spin. I'm still waiting for a few packages to come through the review
process before I will submit the spin for review/wrangling(?).
If you want to have a look at what I've got so far, you can see the
kickstart at [1]. Any comments or questions welcome, even flames: I've
got pretty fire retardant skin!
Once the spin is submitted for review, can stuff still be added to it,
or what's the process for that?
thanks
Gerard.
[1] https://gitorious.org/fedora-jboss-spin/kickstart
--
Gerard Ryan :: gerard(a)ryan.lt :: http://blog.grdryn.me :: @grdryn
GPG Fingerprint: AA11 A666 C98E B6D8 231C 11ED 6EDC 7E4A 62BC 4A15
11 years, 4 months
[spin-kickstarts] look for rd.live.image not liveimg on command line - ref. livecd-tools-18.6
by Adam Williamson
commit aa39c91a41394d82a178a50dc3a1a1140db457cb
Author: Adam Williamson <awilliam(a)redhat.com>
Date: Tue Jul 31 13:12:37 2012 -0700
look for rd.live.image not liveimg on command line - ref. livecd-tools-18.6
fedora-live-base.ks | 2 +-
fedora-live-mini.ks | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/fedora-live-base.ks b/fedora-live-base.ks
index 77c84d2..0810a99 100644
--- a/fedora-live-base.ks
+++ b/fedora-live-base.ks
@@ -70,7 +70,7 @@ cat > /etc/rc.d/init.d/livesys << EOF
. /etc/init.d/functions
-if ! strstr "\`cat /proc/cmdline\`" liveimg || [ "\$1" != "start" ]; then
+if ! strstr "\`cat /proc/cmdline\`" rd.live.image || [ "\$1" != "start" ]; then
exit 0
fi
diff --git a/fedora-live-mini.ks b/fedora-live-mini.ks
index 997f016..7d48921 100644
--- a/fedora-live-mini.ks
+++ b/fedora-live-mini.ks
@@ -310,7 +310,7 @@ cat > /etc/rc.d/init.d/livesys-late << EOF
. /etc/init.d/functions
-if ! strstr "\`cat /proc/cmdline\`" liveimg || [ "\$1" != "start" ] || [ -e /.liveimg-late-configured ] ; then
+if ! strstr "\`cat /proc/cmdline\`" rd.live.image || [ "\$1" != "start" ] || [ -e /.liveimg-late-configured ] ; then
exit 0
fi
11 years, 4 months
[spin-kickstarts] It's 2012. I think there are more important things to put on the install DVD rather than INN.
by Bill Nottingham
commit 38121840f94452e87bf76ab6ea1a62cb0150dd11
Author: Bill Nottingham <notting(a)redhat.com>
Date: Tue Jun 12 14:00:24 2012 -0400
It's 2012. I think there are more important things to put on the install DVD rather than INN.
fedora-install-fedora.ks | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
---
diff --git a/fedora-install-fedora.ks b/fedora-install-fedora.ks
index c0e20b3..85cfcf7 100644
--- a/fedora-install-fedora.ks
+++ b/fedora-install-fedora.ks
@@ -57,7 +57,6 @@ wireshark-gnome
@mail-server
@mysql
@network-server
-@news-server
@server-cfg
@smb-server
@sql-server
11 years, 4 months
[spin-kickstarts] Switch to lightdm. Clean up old stuff. Add more themes.
by Kevin Fenzi
commit d710eb434508994ecc4098635d4832ee72b5ea5b
Author: Kevin Fenzi <kevin(a)scrye.com>
Date: Sat Jul 21 15:02:37 2012 -0600
Switch to lightdm. Clean up old stuff. Add more themes.
fedora-livecd-xfce.ks | 19 ++++++++++---------
1 files changed, 10 insertions(+), 9 deletions(-)
---
diff --git a/fedora-livecd-xfce.ks b/fedora-livecd-xfce.ks
index 7c880d4..3c5cbc6 100644
--- a/fedora-livecd-xfce.ks
+++ b/fedora-livecd-xfce.ks
@@ -81,9 +81,6 @@ gnome-bluetooth
xscreensaver
xdg-user-dirs-gtk
-# FIXME: work around #746693
-metacity
-
# default artwork
fedora-icon-theme
adwaita-cursor-theme
@@ -93,6 +90,12 @@ greybird-gtk2-theme
greybird-gtk3-theme
greybird-xfce4-notifyd-theme
greybird-xfwm4-theme
+albatross-gtk2-theme
+albatross-gtk3-theme
+albatross-xfwm4-theme
+bluebird-gtk2-theme
+bluebird-gtk3-theme
+bluebird-xfwm4-theme
# command line
irssi
@@ -172,6 +175,7 @@ xfwm4-themes
cat > /etc/sysconfig/desktop <<EOF
PREFERRED=/usr/bin/startxfce4
+DISPLAYMANAGER=/usr/sbin/lightdm
EOF
cat >> /etc/rc.d/init.d/livesys << EOF
@@ -197,12 +201,9 @@ rm -f /etc/xdg/autostart/xfconf-migration-4.6.desktop || :
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 auto-login
-cat >> /etc/gdm/custom.conf << FOE
-[daemon]
-AutomaticLoginEnable=True
-AutomaticLogin=liveuser
-FOE
+# set up lightdm autologin
+sed -ei '|^#autologin-user=|autologin-user=liveuser|' /etc/lightdm/lightdm.conf
+sed -ei '|^#autologin-user-timeout=0|autologin-user-timeout=10|' /etc/lightdm/lightdm.conf
# Show harddisk install on the desktop
sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop
11 years, 4 months
[spin-kickstarts] Games: Allow joysticks and game pads to work
by Bruno Wolff III
commit 776252e75ab84cd05243d4fa9a3be3c6ea79701b
Author: Bruno Wolff III <bruno(a)wolff.to>
Date: Sat Jul 21 08:18:15 2012 -0500
Games: Allow joysticks and game pads to work
fedora-livedvd-games.ks | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
---
diff --git a/fedora-livedvd-games.ks b/fedora-livedvd-games.ks
index 7e91988..4a7b847 100644
--- a/fedora-livedvd-games.ks
+++ b/fedora-livedvd-games.ks
@@ -16,6 +16,9 @@ part / --size 10240
-wine
+# Support for joysticks and game pads is now in kernel-modules-extra
+kernel-modules-extra
+
# games
# traditional (big)
@@ -194,3 +197,14 @@ games-menus
-autodownloader
%end
+
+%post
+# Load drivers needed for joysticks and game pads so they work out on
+# the live image without futzing where possible.
+cat > /etc/modules-load.d/joystick.conf << EOF
+joydev
+analog
+EOF
+chmod 755 /etc/modules-load.d/joystick.conf
+
+%end
11 years, 4 months
Adding default user to a group
by Jørn Loamx
Is there a way to add the first created user to a group. I have been
able to add the liveuser to the audio and jackuser groups (which makes
sense for an audio spin), but I have not found a way of making the user
created after install (on firstboot) to said groups. Is this at all
possible, and if so, are there any hint you can give me?
--
Jørn Lomax
GSoC atudent, Fedora audio Spin
CS Student University of Tromsø
11 years, 4 months
Power consumption in Fedora Spin in Think-pad E520
by vamsi krishna kavety
Hello Spins users,
I recently removed windows 7 and Installed Fedora SPIN.
Power consumption in F17 is considerably high (compared to windows)
Full charged battery I am getting (6 hours in windows) and (2 hours in
fedora 17 spin)
Does any one facing the same problem ??? please help me out.
--
-Vamsi
11 years, 5 months
[spin-kickstarts] Drop references to java 1.5 and 1.6 in install image
by Bruno Wolff III
commit cc9bf95427ee522d188418c44238b50e08d71117
Author: Bruno Wolff III <bruno(a)wolff.to>
Date: Tue Jul 10 05:08:38 2012 -0500
Drop references to java 1.5 and 1.6 in install image
Java 1.5 and 1.6 are no longer in Fedora and so we don't need to block
them from the install image any longer. None of the other ks files
referred to them.
fedora-install-fedora.ks | 7 ++-----
1 files changed, 2 insertions(+), 5 deletions(-)
---
diff --git a/fedora-install-fedora.ks b/fedora-install-fedora.ks
index b7861dd..c0e20b3 100644
--- a/fedora-install-fedora.ks
+++ b/fedora-install-fedora.ks
@@ -10,8 +10,8 @@
#part iso --size=4998
# Add the repos you wish to use to compose here. At least one of them needs group data.
-repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch --exclude kernel*debug* --exclude kernel-kdump* --exclude syslog-ng* --exclude java-1.5.0-gcj-devel --exclude astronomy-bookmarks --exclude generic* --exclude java-1.5.0-gcj-javadoc --exclude btanks* --exclude GConf2-dbus* --exclude bluez-gnome
-repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch --exclude kernel*debug* --exclude kernel-kdump* --exclude syslog-ng* --exclude java-1.5.0-gcj-devel --exclude astronomy-bookmarks --exclude generic* --exclude java-1.5.0-gcj-javadoc --exclude btanks* --exclude GConf2-dbus* --exclude bluez-gnome
+repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch --exclude kernel*debug* --exclude kernel-kdump* --exclude syslog-ng* --exclude astronomy-bookmarks --exclude generic* --exclude btanks* --exclude GConf2-dbus* --exclude bluez-gnome
+repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch --exclude kernel*debug* --exclude kernel-kdump* --exclude syslog-ng* --exclude astronomy-bookmarks --exclude generic* --exclude btanks* --exclude GConf2-dbus* --exclude bluez-gnome
# Package manifest for the compose. Uses repo group metadata to translate groups.
@@ -181,11 +181,8 @@ man-pages-*
mythes-*
# Size removals
-gimp-help
--java-1.6.0-openjdk-src
-xorg-x11-docs
-kernel-doc
--java-1.5.0-gcj-src
--java-1.5.0-gcj-devel
-libgcj-src
-frysk
-*gcj*
11 years, 5 months