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] Small fix for local cloud image creation instruction
by Amit Saha
commit 1dd0bbf214649b896957738b40e686b3db37dc72
Author: Amit Saha <asaha(a)redhat.com>
Date: Mon Apr 27 14:10:55 2015 +1000
Small fix for local cloud image creation instruction
ksflatten expects a "-c" option to point to the kickstart.
fedora-cloud-base.ks | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/fedora-cloud-base.ks b/fedora-cloud-base.ks
index ae0ba52..0a20bd5 100644
--- a/fedora-cloud-base.ks
+++ b/fedora-cloud-base.ks
@@ -20,7 +20,7 @@
#
# curl -O https://git.fedorahosted.org/cgit/fedora-atomic.git/plain/fedora-atomic-r...
# tempfile=$(mktemp --suffix=.ks)
-# ksflatten -v F22 fedora-cloud-base.ks > ${tempfile}
+# ksflatten -v F22 -c fedora-cloud-base.ks > ${tempfile}
# imagefactory --debug base_image --file-parameter install_script ${tempfile} fedora-atomic-rawhide.tdl
#
8 years, 1 month
[PATCH] add rsync to non-atomic vagrant box
by Ian McLeod
It gets installed at box launch time anyway. Save users the
annoyance of having to wait. This is in line with the Atomic
Vagrant images as well, which contain rsync in the composed tree.
---
fedora-cloud-base-vagrant.ks | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/fedora-cloud-base-vagrant.ks b/fedora-cloud-base-vagrant.ks
index 38d54fa..d179d91 100644
--- a/fedora-cloud-base-vagrant.ks
+++ b/fedora-cloud-base-vagrant.ks
@@ -28,6 +28,10 @@ bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,11520
# layer for dnf
# TODO: Teach vagrant about dnf
dnf-yum
+# rsync gets installed when the Vagrant box is first launched on the
+# users setup. This can actually take a bit of time. Just fold it
+# in to the base box disk image
+rsync
%end
%post --erroronfail
--
2.1.0
8 years, 1 month
[PATCH] grow base partition for cloud and vagrant images
by Ian McLeod
We control the actual size of the virtual disks with options on the
koji command line. This change will allow the Vagrant root
partition to grow to the 40 GB we allocate in the koji image build
while the base cloud image will remain essentially unchanged, as it
is set to 3 GB in the rel-eng koji call.
---
fedora-cloud-base.ks | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fedora-cloud-base.ks b/fedora-cloud-base.ks
index ae0ba52..17a1e78 100644
--- a/fedora-cloud-base.ks
+++ b/fedora-cloud-base.ks
@@ -43,7 +43,7 @@ services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config
zerombr
clearpart --all
-part / --size 3000 --fstype ext4
+part / --size 3000 --fstype ext4 --grow
%include fedora-repo.ks
-- 2.1.0
8 years, 1 month
[spin-kickstarts] workstation: Sync included groups with comps
by Kalev Lember
commit 1b5f493b3387ca984d6fe23413c666220c0c9f67
Author: Kalev Lember <kalevlember(a)gmail.com>
Date: Fri Apr 24 22:31:37 2015 +0200
workstation: Sync included groups with comps
Comps commit b802fd1c8472bcf5eb2587cd9ba20fb301bbaa6e changed
workstation-product-environment to include the whole of @firefox group,
as opposed to just including the firefox package in the
workstation-product group. This commit syncs the change here too.
fedora-workstation-packages.ks | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/fedora-workstation-packages.ks b/fedora-workstation-packages.ks
index 6307bab..eceda57 100644
--- a/fedora-workstation-packages.ks
+++ b/fedora-workstation-packages.ks
@@ -9,6 +9,7 @@
# workstation-product-environment in comps
@base-x
@core
+@firefox
@fonts
@guest-desktop-agents
@hardware-support
8 years, 1 month
[spin-kickstarts] Drop any references to fedora-release-nonproduct
by Kalev Lember
commit 181d3e9f8c9201c16bf4e4633bfd4f4f73671456
Author: Kalev Lember <kalevlember(a)gmail.com>
Date: Fri Apr 24 22:27:31 2015 +0200
Drop any references to fedora-release-nonproduct
The package is gone in F22+ and folded into fedora-release.
fedora-arm-base.ks | 1 -
fedora-arm-server.ks | 1 -
fedora-live-base.ks | 1 -
fedora-workstation-packages.ks | 1 -
4 files changed, 0 insertions(+), 4 deletions(-)
---
diff --git a/fedora-arm-base.ks b/fedora-arm-base.ks
index b42c4ac..7683634 100644
--- a/fedora-arm-base.ks
+++ b/fedora-arm-base.ks
@@ -23,7 +23,6 @@ services --enabled=ssh,NetworkManager,avahi-daemon,rsyslog,chronyd --disabled=ne
@standard
@hardware-support
@dial-up
-@fedora-release-nonproduct
kernel
diff --git a/fedora-arm-server.ks b/fedora-arm-server.ks
index 396e5a9..a00f790 100644
--- a/fedora-arm-server.ks
+++ b/fedora-arm-server.ks
@@ -4,7 +4,6 @@
part / --size=3000 --fstype xfs
%packages
--@fedora-release-nonproduct
-@dial-up
# install the default groups for the server evironment since installing the environment is not working
@server-product
diff --git a/fedora-live-base.ks b/fedora-live-base.ks
index f0e94c7..9aeeeb8 100644
--- a/fedora-live-base.ks
+++ b/fedora-live-base.ks
@@ -24,7 +24,6 @@ services --enabled=NetworkManager --disabled=network,sshd
@guest-desktop-agents
@standard
@core
-@fedora-release-nonproduct
@fonts
@input-methods
@dial-up
diff --git a/fedora-workstation-packages.ks b/fedora-workstation-packages.ks
index 4cbde90..6307bab 100644
--- a/fedora-workstation-packages.ks
+++ b/fedora-workstation-packages.ks
@@ -2,7 +2,6 @@
# Exclude unwanted groups that fedora-live-base.ks pulls in
-@dial-up
--@fedora-release-nonproduct
-@input-methods
-@standard
8 years, 1 month
[spin-kickstarts/f22] Drop any references to fedora-release-nonproduct
by Kalev Lember
commit c7094bf8ab7f6d600d013c9b57a6a41c35e3a71f
Author: Kalev Lember <kalevlember(a)gmail.com>
Date: Fri Apr 24 22:27:31 2015 +0200
Drop any references to fedora-release-nonproduct
The package is gone in F22+ and folded into fedora-release.
fedora-arm-base.ks | 1 -
fedora-arm-server.ks | 1 -
fedora-live-base.ks | 1 -
fedora-workstation-packages.ks | 1 -
4 files changed, 0 insertions(+), 4 deletions(-)
---
diff --git a/fedora-arm-base.ks b/fedora-arm-base.ks
index 6898964..67a0493 100644
--- a/fedora-arm-base.ks
+++ b/fedora-arm-base.ks
@@ -23,7 +23,6 @@ services --enabled=ssh,NetworkManager,avahi-daemon,rsyslog,chronyd --disabled=ne
@standard
@hardware-support
@dial-up
-@fedora-release-nonproduct
kernel
diff --git a/fedora-arm-server.ks b/fedora-arm-server.ks
index 396e5a9..a00f790 100644
--- a/fedora-arm-server.ks
+++ b/fedora-arm-server.ks
@@ -4,7 +4,6 @@
part / --size=3000 --fstype xfs
%packages
--@fedora-release-nonproduct
-@dial-up
# install the default groups for the server evironment since installing the environment is not working
@server-product
diff --git a/fedora-live-base.ks b/fedora-live-base.ks
index f0e94c7..9aeeeb8 100644
--- a/fedora-live-base.ks
+++ b/fedora-live-base.ks
@@ -24,7 +24,6 @@ services --enabled=NetworkManager --disabled=network,sshd
@guest-desktop-agents
@standard
@core
-@fedora-release-nonproduct
@fonts
@input-methods
@dial-up
diff --git a/fedora-workstation-packages.ks b/fedora-workstation-packages.ks
index 4cbde90..6307bab 100644
--- a/fedora-workstation-packages.ks
+++ b/fedora-workstation-packages.ks
@@ -2,7 +2,6 @@
# Exclude unwanted groups that fedora-live-base.ks pulls in
-@dial-up
--@fedora-release-nonproduct
-@input-methods
-@standard
8 years, 1 month
[spin-kickstarts] fedora-virt-server.ks.in: Delete, obsoleted by the cloud image
by Colin Walters
commit 561734e70a17f53c04592a2cabe384463d58da49
Author: Colin Walters <walters(a)verbum.org>
Date: Thu Apr 23 12:18:24 2015 -0400
fedora-virt-server.ks.in: Delete, obsoleted by the cloud image
I committed this 5 years ago with only a minimum of review, its main
feature was easier SSH key injection, a problem which has been solved
much better by the cloud image which uses `cloud-init`, as well as the
Vagrant boxes which use hardcoded vagrant SSH keys.
fedora-virt-server.ks.in | 72 ----------------------------------------------
1 files changed, 0 insertions(+), 72 deletions(-)
8 years, 1 month
[spin-kickstarts] this file does not belong in the spin-kickstarts repo
by Dennis Gilmore
commit 16945e23fd705e1eb385956dc45b8b89222bdf52
Author: Dennis Gilmore <dennis(a)ausil.us>
Date: Thu Apr 23 11:12:59 2015 -0500
this file does not belong in the spin-kickstarts repo
Signed-off-by: Dennis Gilmore <dennis(a)ausil.us>
SparkleShare.txt | 9 ---------
1 files changed, 0 insertions(+), 9 deletions(-)
8 years, 1 month