Browse code

Remove support for End Of Life (EOL) Fedora 22

Fedora 22 reaches its EOL on 19-JUL-2016[1]. Remove it as
officially supported distribution.

The current two supported Fedora distributions are Fedora 23 and Fedora
24. (Change Ia4a58de4973ef228735c48b33453a0562dc65258 already added
support for Fedora 24.)

[1] https://fedoramagazine.org/fedora-22-end-of-life-2016-july/

Change-Id: I5b4e1ddb6165a9065e80e84175246678a7356f18

Kashyap Chamarthy authored on 2016/07/13 19:34:03
Showing 5 changed files
... ...
@@ -7,9 +7,9 @@ gcc-c++
7 7
 gettext  # used for compiling message catalogs
8 8
 git-core
9 9
 graphviz # needed only for docs
10
-iptables-services  # NOPRIME f22,f23,f24
10
+iptables-services  # NOPRIME f23,f24
11 11
 java-1.7.0-openjdk-headless  # NOPRIME rhel7
12
-java-1.8.0-openjdk-headless  # NOPRIME f22,f23,f24
12
+java-1.8.0-openjdk-headless  # NOPRIME f23,f24
13 13
 libffi-devel
14 14
 libjpeg-turbo-devel # Pillow 3.0.0
15 15
 libxml2-devel # lxml
... ...
@@ -7,7 +7,7 @@ gawk
7 7
 genisoimage # required for config_drive
8 8
 iptables
9 9
 iputils
10
-kernel-modules # dist:f22,f23,f24
10
+kernel-modules # dist:f23,f24
11 11
 kpartx
12 12
 kvm # NOPRIME
13 13
 libvirt-bin # NOPRIME
... ...
@@ -2,7 +2,7 @@ curl
2 2
 liberasurecode-devel
3 3
 memcached
4 4
 pyxattr
5
-rsync-daemon # dist:f22,f23,f24
5
+rsync-daemon # dist:f23,f24
6 6
 sqlite
7 7
 xfsprogs
8 8
 xinetd
... ...
@@ -116,7 +116,7 @@ function undefine_virsh_secret {
116 116
 
117 117
 # check_os_support_ceph() - Check if the operating system provides a decent version of Ceph
118 118
 function check_os_support_ceph {
119
-    if [[ ! ${DISTRO} =~ (trusty|f22|f23|f24) ]]; then
119
+    if [[ ! ${DISTRO} =~ (trusty|f23|f24) ]]; then
120 120
         echo "WARNING: your distro $DISTRO does not provide (at least) the Firefly release. Please use Ubuntu Trusty or Fedora 20 (and higher)"
121 121
         if [[ "$FORCE_CEPH_INSTALL" != "yes" ]]; then
122 122
             die $LINENO "If you wish to install Ceph on this distribution anyway run with FORCE_CEPH_INSTALL=yes"
... ...
@@ -185,7 +185,7 @@ source $TOP_DIR/stackrc
185 185
 
186 186
 # Warn users who aren't on an explicitly supported distro, but allow them to
187 187
 # override check and attempt installation with ``FORCE=yes ./stack``
188
-if [[ ! ${DISTRO} =~ (trusty|wily|xenial|7.0|wheezy|sid|testing|jessie|f22|f23|f24|rhel7|kvmibm1) ]]; then
188
+if [[ ! ${DISTRO} =~ (trusty|wily|xenial|7.0|wheezy|sid|testing|jessie|f23|f24|rhel7|kvmibm1) ]]; then
189 189
     echo "WARNING: this script has not been tested on $DISTRO"
190 190
     if [[ "$FORCE" != "yes" ]]; then
191 191
         die $LINENO "If you wish to run this script anyway run with FORCE=yes"