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, 10 months
[spin-kickstarts] fix up the options to the bootloader config, make the rootfs smaller.
by Dennis Gilmore
commit 8180b563f16b9e01af52ab935f40e0b8dbee0440
Author: Dennis Gilmore <dennis(a)ausil.us>
Date: Wed Jul 30 02:23:41 2014 -0500
fix up the options to the bootloader config, make the rootfs smaller.
fedora-docker-base.ks | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/fedora-docker-base.ks b/fedora-docker-base.ks
index 9af8798..1a335d3 100644
--- a/fedora-docker-base.ks
+++ b/fedora-docker-base.ks
@@ -4,7 +4,7 @@
# yum configuration in order to enable other languages.
-bootloader --disable
+bootloader --location=none
timezone America/New_York --isUtc --nontp
rootpw --plaintext qweqwe
@@ -12,7 +12,7 @@ keyboard us
firewall --disable
zerombr
clearpart --all
-part / --size 4096 --fstype ext4
+part / --size 3000 --fstype ext4
reboot
%packages --excludedocs --instLangs=en --nocore
9 years, 2 months
[spin-kickstarts] Add kickstart for Docker base image
by Dennis Gilmore
commit 022cc883c056e16c5baa7ecf54ed60454c67bce3
Author: Vaclav Pavlin <vpavlin(a)redhat.com>
Date: Tue Jul 29 14:30:03 2014 +0200
Add kickstart for Docker base image
fedora-docker-base.ks | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 49 insertions(+), 0 deletions(-)
---
diff --git a/fedora-docker-base.ks b/fedora-docker-base.ks
new file mode 100644
index 0000000..9af8798
--- /dev/null
+++ b/fedora-docker-base.ks
@@ -0,0 +1,49 @@
+# This is a minimal Fedora install designed to serve as a Docker base image.
+#
+# To keep this image minimal it only installs English language. You need to change
+# yum configuration in order to enable other languages.
+
+
+bootloader --disable
+timezone America/New_York --isUtc --nontp
+rootpw --plaintext qweqwe
+
+keyboard us
+firewall --disable
+zerombr
+clearpart --all
+part / --size 4096 --fstype ext4
+reboot
+
+%packages --excludedocs --instLangs=en --nocore
+bash
+fedora-release
+vim-minimal
+yum
+#fakesystemd #TODO: waiting for review https://bugzilla.redhat.com/show_bug.cgi?id=1118740
+-kernel
+
+
+%end
+
+%post --log=/tmp/anaconda-post.log
+# Set the language rpm nodocs transaction flag persistently in the
+# image yum.conf and rpm macros
+
+LANG="en_US"
+echo "%_install_lang $LANG" > /etc/rpm/macros.image-language-conf
+
+awk '(NF==0&&!done){print "override_install_langs='$LANG'\ntsflags=nodocs";done=1}{print}' \
+ < /etc/yum.conf > /etc/yum.conf.new
+mv /etc/yum.conf.new /etc/yum.conf
+
+echo "Import RPM GPG key"
+releasever=$(rpm -q --qf '%{version}\n' fedora-release)
+basearch=$(uname -i)
+rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
+
+rm -f /usr/lib/locale/locale-archive
+rm -rf /var/cache/yum/*
+rm -f /tmp/ks-script*
+
+%end
9 years, 2 months
[spin-kickstarts/f21] fix up the options to the bootloader config, make the rootfs smaller.
by Dennis Gilmore
commit 8fa093cdc8c18b873c37a72b5eb584ac69e42ef7
Author: Dennis Gilmore <dennis(a)ausil.us>
Date: Wed Jul 30 02:23:41 2014 -0500
fix up the options to the bootloader config, make the rootfs smaller.
fedora-docker-base.ks | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/fedora-docker-base.ks b/fedora-docker-base.ks
index 9af8798..1a335d3 100644
--- a/fedora-docker-base.ks
+++ b/fedora-docker-base.ks
@@ -4,7 +4,7 @@
# yum configuration in order to enable other languages.
-bootloader --disable
+bootloader --location=none
timezone America/New_York --isUtc --nontp
rootpw --plaintext qweqwe
@@ -12,7 +12,7 @@ keyboard us
firewall --disable
zerombr
clearpart --all
-part / --size 4096 --fstype ext4
+part / --size 3000 --fstype ext4
reboot
%packages --excludedocs --instLangs=en --nocore
9 years, 2 months
[spin-kickstarts/f21] Add kickstart for Docker base image
by Dennis Gilmore
commit 9407e29795c5104a581a4b946c8fe4486f3debe8
Author: Vaclav Pavlin <vpavlin(a)redhat.com>
Date: Tue Jul 29 14:30:03 2014 +0200
Add kickstart for Docker base image
fedora-docker-base.ks | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 49 insertions(+), 0 deletions(-)
---
diff --git a/fedora-docker-base.ks b/fedora-docker-base.ks
new file mode 100644
index 0000000..9af8798
--- /dev/null
+++ b/fedora-docker-base.ks
@@ -0,0 +1,49 @@
+# This is a minimal Fedora install designed to serve as a Docker base image.
+#
+# To keep this image minimal it only installs English language. You need to change
+# yum configuration in order to enable other languages.
+
+
+bootloader --disable
+timezone America/New_York --isUtc --nontp
+rootpw --plaintext qweqwe
+
+keyboard us
+firewall --disable
+zerombr
+clearpart --all
+part / --size 4096 --fstype ext4
+reboot
+
+%packages --excludedocs --instLangs=en --nocore
+bash
+fedora-release
+vim-minimal
+yum
+#fakesystemd #TODO: waiting for review https://bugzilla.redhat.com/show_bug.cgi?id=1118740
+-kernel
+
+
+%end
+
+%post --log=/tmp/anaconda-post.log
+# Set the language rpm nodocs transaction flag persistently in the
+# image yum.conf and rpm macros
+
+LANG="en_US"
+echo "%_install_lang $LANG" > /etc/rpm/macros.image-language-conf
+
+awk '(NF==0&&!done){print "override_install_langs='$LANG'\ntsflags=nodocs";done=1}{print}' \
+ < /etc/yum.conf > /etc/yum.conf.new
+mv /etc/yum.conf.new /etc/yum.conf
+
+echo "Import RPM GPG key"
+releasever=$(rpm -q --qf '%{version}\n' fedora-release)
+basearch=$(uname -i)
+rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
+
+rm -f /usr/lib/locale/locale-archive
+rm -rf /var/cache/yum/*
+rm -f /tmp/ks-script*
+
+%end
9 years, 2 months
[spin-kickstarts] Server: Use server-product-environment by default
by Miloslav Trmac
commit bc28d4e2722e33d015cf59d6918f50a7c9f7a36c
Author: Miloslav Trmač <mitr(a)redhat.com>
Date: Mon Jul 21 17:29:16 2014 +0200
Server: Use server-product-environment by default
Most importantly, cause fedora-release-server to be installed.
fedora-install-server.ks | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)
---
diff --git a/fedora-install-server.ks b/fedora-install-server.ks
index 8b1854f..f469139 100644
--- a/fedora-install-server.ks
+++ b/fedora-install-server.ks
@@ -68,13 +68,21 @@ dracut-*
@multimedia
@hardware-support
-# Workstation
+# Some development tools
@development-libs
@development-tools
@c-development
@rpm-development-tools
@fedora-packager
+# Fedora Server.
+# Including this causes the fedora-release-server package to be included,
+# which in turn enables server-product-environment, and due to to its priority
+# this will be the default environment.
+@server-product
+@headless-management
+@container-management
+
# Common server packages
@mysql
@sql-server
@@ -103,8 +111,6 @@ dracut-*
@load-balancer
@ha
-@container-management
-@headless-management
@javaenterprise
# “uservisible” groups we want to offer
9 years, 2 months
netizen intro and kickstart
by Corey Leong
Greetings all --
Abiding by the Spins Process SOP, this message is for introducing the spin,
Netizen [1]. The purpose of the spin is to offer an environment similar to
user needs mirrored to those in the real world. Inspired by Maslow's
Hierarchy of Needs [2], Netizen is organized into major areas and levels:
privacy, security, engagement, awareness, etc. The spin's target market is
projected for activists, public and charity sectors, and citizens in need
of a specialized, open source operating system.
The initial release goal is set for F22 which gives me plenty of time to
continue to add/remove packages, test for QA, and submit for approval. In
addition, this type of timeline allows for developing custom branding, spin
page, and a dedicated website which may help its public awareness aligned
with a recent message topic discussed on this list.
Feedback is welcomed and I look forward to contributing to this community
and the Fedora Project.
Thanks,
--Corey
References
[1] https://fedoraproject.org/wiki/Netizen_Spin
[2] http://en.wikipedia.org/wiki/Maslow's_hierarchy_of_needs
--
Corey Leong, MNM, MA*
PO Box 691871
Orlando, FL 32869
email: cleong(a)fedoraproject.org <corey(a)corey.leong.name>
web: http://coreyleong.org
blog: http://blog.coreyleong.org
phone: (407) 279-1133
skype: coreyleong
9 years, 2 months
[spin-kickstarts/f21] remove growroot in arm images to test 1109603
by Peter Robinson
commit 587bbba38fb461c119cd5ce342e7c06f6764aa54
Author: Peter Robinson <pbrobinson(a)gmail.com>
Date: Wed Jul 16 10:28:48 2014 +0100
remove growroot in arm images to test 1109603
fedora-arm-base.ks | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/fedora-arm-base.ks b/fedora-arm-base.ks
index 15f3cc7..fb25a7f 100644
--- a/fedora-arm-base.ks
+++ b/fedora-arm-base.ks
@@ -34,7 +34,7 @@ extlinux-bootloader
initial-setup
initial-setup-gui
#lets resize / on first boot
-dracut-modules-growroot
+# dracut-modules-growroot
# remove this in %post
dracut-config-generic
9 years, 2 months
[spin-kickstarts/f21] Server: Use server-product-environment by default
by Miloslav Trmac
commit bd9f635d7a9faee174481089e9f53e504d2d78bd
Author: Miloslav Trmač <mitr(a)redhat.com>
Date: Mon Jul 21 17:29:16 2014 +0200
Server: Use server-product-environment by default
Most importantly, cause fedora-release-server to be installed.
fedora-install-server.ks | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)
---
diff --git a/fedora-install-server.ks b/fedora-install-server.ks
index 029707f..34d7c67 100644
--- a/fedora-install-server.ks
+++ b/fedora-install-server.ks
@@ -68,13 +68,21 @@ dracut-*
@multimedia
@hardware-support
-# Workstation
+# Some development tools
@development-libs
@development-tools
@c-development
@rpm-development-tools
@fedora-packager
+# Fedora Server.
+# Including this causes the fedora-release-server package to be included,
+# which in turn enables server-product-environment, and due to to its priority
+# this will be the default environment.
+@server-product
+@headless-management
+@container-management
+
# Common server packages
@mysql
@sql-server
@@ -103,8 +111,6 @@ dracut-*
@load-balancer
@ha
-@container-management
-@headless-management
@javaenterprise
# “uservisible” groups we want to offer
9 years, 2 months