Spins SIG meeting time
by Christoph Wickert
Hi,
we have a result on the spins SIG meeting time. Unfortunately we were
not able to find a time that works for everybody. The maximum number of
people that could make it are 8 (out of 10) on Monday 20:00 UTC.
The following people would currently be excluded:
* Jan
* Jaroslav
I'd like to ask both of you to look into the poll at
http://doodle.com/tpi6es8z8chfrkgn
again, especially Jan as he is most inflexible person and Jaroslav,
since I really like to have him with us as a representative of KDE.
Regards,
Christoph
12 years, 6 months
[spin-kickstarts] add ec2 kickstart
by Dennis Gilmore
commit 513737f702097eeda95158cbf38517b65f1ec79b
Author: Dennis Gilmore <dennis(a)ausil.us>
Date: Fri Feb 25 20:06:35 2011 -0600
add ec2 kickstart
Fedora-15-ec2.ks | 113 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 113 insertions(+), 0 deletions(-)
---
diff --git a/Fedora-15-ec2.ks b/Fedora-15-ec2.ks
new file mode 100644
index 0000000..729e39b
--- /dev/null
+++ b/Fedora-15-ec2.ks
@@ -0,0 +1,113 @@
+# Build a basic Fedora 14 AMI
+lang en_US.UTF-8
+keyboard us
+timezone US/Eastern
+auth --useshadow --enablemd5
+selinux --disabled
+firewall --disabled
+bootloader --timeout=1
+network --bootproto=dhcp --device=eth0 --onboot=on
+services --enabled=network,ssh
+
+# By default the root password is emptied
+
+#
+# Define how large you want your rootfs to be
+# NOTE: S3-backed AMIs have a limit of 10G
+#
+part / --size 10000 --fstype ext3 --ondisk sda
+
+#
+# Repositories
+repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-15&arch=$basearch
+
+#
+#
+# Add all the packages after the base packages
+#
+%packages --excludedocs --nobase --instLangs=en
+@core
+system-config-securitylevel-tui
+audit
+pciutils
+bash
+coreutils
+kernel
+grub
+e2fsprogs
+passwd
+policycoreutils
+chkconfig
+rootfiles
+yum
+vim-minimal
+acpid
+openssh-clients
+openssh-server
+curl
+sudo
+
+#Allow for dhcp access
+dhclient
+iputils
+
+%end
+
+# more ec2-ify
+%post --erroronfail
+
+# disable root password based login
+cat >> /etc/ssh/sshd_config << EOF
+PermitRootLogin no
+PasswordAuthentication no
+UseDNS no
+EOF
+
+# create ec2-user
+/usr/sbin/useradd ec2-user
+/bin/echo -e 'ec2-user\tALL=(ALL)\tNOPASSWD: ALL' >> /etc/sudoers
+
+# set up ssh key fetching
+cat >> /etc/rc.local << EOF
+if [ ! -d /home/ec2-user/.ssh ]; then
+ mkdir -p /home/ec2-user/.ssh
+ chmod 700 /home/ec2-user/.ssh
+fi
+
+# Fetch public key using HTTP
+while [ ! -f /home/ec2-user/.ssh/authorized_keys ]; do
+ curl -f http://169.254.169.254/latest/meta-data/public-keys/0/openssh-key > /tmp/aws-key 2>/dev/null
+ if [ \$? -eq 0 ]; then
+ cat /tmp/aws-key >> /home/ec2-user/.ssh/authorized_keys
+ chmod 0600 /home/ec2-user/.ssh/authorized_keys
+ restorecon /home/ec2-user/.ssh/authorized_keys
+ rm -f /tmp/aws-key
+ echo "Successfully retrieved AWS public key from instance metadata"
+ else
+ FAILED=\$((\$FAILED + 1))
+ if [ \$FAILED -ge \$ATTEMPTS ]; then
+ echo "Failed to retrieve AWS public key after \$FAILED attempts, quitting"
+ break
+ fi
+ echo "Could not retrieve AWS public key (attempt #\$FAILED/\$ATTEMPTS), retrying in 5 seconds..."
+ sleep 5
+ fi
+done
+
+# make sure firstboot doesn't start
+echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
+
+if [ ! -d /lib64 ] ; then
+
+cat <<EOL >> /etc/fstab
+/dev/xvda3 swap swap defaults 0 0
+EOL
+
+# workaround xen performance issue (bz 651861)
+echo "hwcap 1 nosegneg" > /etc/ld.so.conf.d/libc6-xen.conf
+
+fi
+
+
+%end
+
12 years, 6 months
Commit messages for spin-kickstarts.git
by Christoph Wickert
A note to all spin-kickstarts committers: Please be so kind as to
mention the ks or the spin at the beginning of your commit message.
Bad:
"Save some space"
Good:
"KDE: Save some space"
"fedora-live*-kde.ks: Save some space" (affects both fedora-live-kde.ks
and fedora-livecd-kde.ks)
Only abandon the spin/kickstart if it is a global change, that affects
all spins.
Most committers already do this, so please consider this only a small
reminder. I am convinced that this will make our lives easier.
Regards,
Christoph
12 years, 6 months
[spin-kickstarts] removed gmixer - caused build error
by Joerg Simon
commit e6f64a9f0571e46dcf5ebd2fb9d4d6c992a2557a
Author: Joerg (kital) Simon <jsimon(a)fedoraproject.org>
Date: Mon Feb 28 14:45:40 2011 +0100
removed gmixer - caused build error
fedora-livecd-security.ks | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/fedora-livecd-security.ks b/fedora-livecd-security.ks
index 7dabcf2..a94b105 100644
--- a/fedora-livecd-security.ks
+++ b/fedora-livecd-security.ks
@@ -4,12 +4,12 @@
# A fully functional live OS based on Fedora for use in security auditing, forensics research, and penetration testing.
# Maintainers:
# Christoph Wickert <cwickert [AT] fedoraproject <dot> org>
-# Hiemanshu Sharma <hiemanshu [AT] fedoraproject <dot> org>
# Joerg Simon <jsimon [AT] fedoraproject <dot> org>
# Acknowledgements:
# Fedora LiveCD Xfce Spin team - some work here was inherited, many thanks!
# Fedora LXDE Spin - Copied over stuff to make LXDE Default
# Luke Macken, Adam Miller for the original OpenBox Security ks and all the Security Applications!
+# Hiemanshu Sharma <hiemanshu [AT] fedoraproject <dot> org>
# Important!!!!
# Beginning with Security Stuff - we use pattern to parse the kickstart-file for building the security menu - please use
# # Category: Categoryname <- for new Categories
@@ -31,7 +31,8 @@ xarchiver
gnome-bluetooth
alsa-plugins-pulseaudio
system-config-printer
-gmixer
+#gmixer
+pavucontrol
lxmusic
asunder
hal-storage-addon
12 years, 6 months
prelink
by Kevin Fenzi
Looking at bug https://bugzilla.redhat.com/show_bug.cgi?id=679880 it
seems that prelink does make things a bit faster if run on the live
image at compose time, as well as saving lots of memory if run for more
than a day (when the prelink cron kicks in).
Anyone have objections to adding a prelink call to the end of the live
base compose? Or should we just disable it entirely?
Thoughts?
kevin
12 years, 6 months
[spin-kickstarts] Xfce: permanently drop xfce4-volstatus-icon (orphaned)
by Christoph Wickert
commit 87ed33f5a948a2f0ccce3774088f24358dfbf21e
Author: Christoph Wickert <cwickert(a)fedoraproject.org>
Date: Sun Feb 27 17:15:32 2011 +0100
Xfce: permanently drop xfce4-volstatus-icon (orphaned)
fedora-livecd-xfce.ks | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
---
diff --git a/fedora-livecd-xfce.ks b/fedora-livecd-xfce.ks
index bb8f593..cf1ef31 100644
--- a/fedora-livecd-xfce.ks
+++ b/fedora-livecd-xfce.ks
@@ -139,8 +139,6 @@ xfce4-taskmanager
xfce4-time-out-plugin
xfce4-timer-plugin
xfce4-verve-plugin
-# disabled for now, doesn't work with 4.8 - kevin 2011-01-14
-#xfce4-volstatus-icon
# we already have nm-applet
#xfce4-wavelan-plugin
xfce4-weather-plugin
12 years, 6 months
[spin-kickstarts] LXDE: Don't install gnome-disk-utility (default in @admin-tools now)
by Christoph Wickert
commit ae41d6b1935105f9fd7ec567581cb863cf87cfdf
Author: Christoph Wickert <cwickert(a)fedoraproject.org>
Date: Sun Feb 27 17:14:21 2011 +0100
LXDE: Don't install gnome-disk-utility (default in @admin-tools now)
fedora-livecd-lxde.ks | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/fedora-livecd-lxde.ks b/fedora-livecd-lxde.ks
index f28e402..ae5d5a9 100644
--- a/fedora-livecd-lxde.ks
+++ b/fedora-livecd-lxde.ks
@@ -111,6 +111,7 @@ ssmtp
-system-config-rootpassword
#-system-config-services
-policycoreutils-gui
+-gnome-disk-utility
%end
12 years, 6 months
[spin-kickstarts] Xfce: Don't install gnome-disk-utility (default in @admin-tools now)
by Christoph Wickert
commit 5e8a2e426853991df39bd5d3013e02cd1d75ad95
Author: Christoph Wickert <cwickert(a)fedoraproject.org>
Date: Sun Feb 27 17:11:43 2011 +0100
Xfce: Don't install gnome-disk-utility (default in @admin-tools now)
fedora-livecd-xfce.ks | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/fedora-livecd-xfce.ks b/fedora-livecd-xfce.ks
index aee7cd7..bb8f593 100644
--- a/fedora-livecd-xfce.ks
+++ b/fedora-livecd-xfce.ks
@@ -79,6 +79,7 @@ catfish
desktop-backgrounds-compat
gcalctool
gparted
+-gnome-disk-utility
gnome-bluetooth
xscreensaver
seahorse
12 years, 6 months
[spin-kickstarts] LXDE: gmixer was orphaned, use pavucontrol instead
by Christoph Wickert
commit 445c746f68fafc1693c7c3ee62f1686554277bd4
Author: Christoph Wickert <cwickert(a)fedoraproject.org>
Date: Sat Feb 26 09:32:27 2011 +0100
LXDE: gmixer was orphaned, use pavucontrol instead
fedora-livecd-lxde.ks | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/fedora-livecd-lxde.ks b/fedora-livecd-lxde.ks
index a648f18..f28e402 100644
--- a/fedora-livecd-lxde.ks
+++ b/fedora-livecd-lxde.ks
@@ -33,7 +33,8 @@ epdfview
mtpaint
# audio & video
-gmixer
+#gmixer
+pavucontrol
lxmusic
asunder
gxine
12 years, 7 months