Skip to content

Commit 7c9df10

Browse files
committed
Remove Fedora 19 as supported distribution
Fedora 19 will reach its end of life on 6-JAN-2015 https://lists.fedoraproject.org/pipermail/announce/2014-December/003243.html Remove it as a supported distribution and add Fedora 21 - stack.sh: Remove Fedora 19 from list of 'supported' distributions. - tools/fixup_stuff.sh: Remove Fedora 19. Also remove the workaround of disabling firewalld for Fedora 21. Change-Id: If92b87d2f9a2bb95469730cda201a7981670f727
1 parent 27f0339 commit 7c9df10

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

stack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ source $TOP_DIR/stackrc
143143

144144
# Warn users who aren't on an explicitly supported distro, but allow them to
145145
# override check and attempt installation with ``FORCE=yes ./stack``
146-
if [[ ! ${DISTRO} =~ (precise|trusty|7.0|wheezy|sid|testing|jessie|f19|f20|f21|rhel6|rhel7) ]]; then
146+
if [[ ! ${DISTRO} =~ (precise|trusty|7.0|wheezy|sid|testing|jessie|f20|f21|rhel6|rhel7) ]]; then
147147
echo "WARNING: this script has not been tested on $DISTRO"
148148
if [[ "$FORCE" != "yes" ]]; then
149149
die $LINENO "If you wish to run this script anyway run with FORCE=yes"

tools/fixup_stuff.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ if is_fedora; then
111111
fi
112112

113113
FORCE_FIREWALLD=$(trueorfalse False $FORCE_FIREWALLD)
114-
if [[ ${DISTRO} =~ (f19|f20) && $FORCE_FIREWALLD == "False" ]]; then
115-
# On Fedora 19 and 20 firewalld interacts badly with libvirt and
114+
if [[ ${DISTRO} =~ (f20) && $FORCE_FIREWALLD == "False" ]]; then
115+
# On Fedora 20 firewalld interacts badly with libvirt and
116116
# slows things down significantly. However, for those cases
117117
# where that combination is desired, allow this fix to be skipped.
118118

0 commit comments

Comments
 (0)