Browse code

Merge "Remove Fedora 20 as supported distribution"

Jenkins authored on 2015/06/17 04:59:45
Showing 4 changed files
... ...
@@ -19,9 +19,9 @@ Quick Start
19 19
 
20 20
 #. Select a Linux Distribution
21 21
 
22
-   Only Ubuntu 14.04 (Trusty), Fedora 20 and CentOS/RHEL 7 are
23
-   documented here. OpenStack also runs and is packaged on other flavors
24
-   of Linux such as OpenSUSE and Debian.
22
+   Only Ubuntu 14.04 (Trusty), Fedora 21 (or Fedora 22) and CentOS/RHEL
23
+   7 are documented here. OpenStack also runs and is packaged on other
24
+   flavors of Linux such as OpenSUSE and Debian.
25 25
 
26 26
 #. Install Selected OS
27 27
 
... ...
@@ -25,6 +25,6 @@ bc
25 25
 libyaml-devel
26 26
 gettext  # used for compiling message catalogs
27 27
 net-tools
28
-java-1.7.0-openjdk-headless  # NOPRIME rhel7,f20
28
+java-1.7.0-openjdk-headless  # NOPRIME rhel7
29 29
 java-1.8.0-openjdk-headless  # NOPRIME f21,f22
30 30
 pyOpenSSL # version in pip uses too much memory
... ...
@@ -110,7 +110,7 @@ function undefine_virsh_secret {
110 110
 
111 111
 # check_os_support_ceph() - Check if the operating system provides a decent version of Ceph
112 112
 function check_os_support_ceph {
113
-    if [[ ! ${DISTRO} =~ (trusty|f20|f21|f22) ]]; then
113
+    if [[ ! ${DISTRO} =~ (trusty|f21|f22) ]]; then
114 114
         echo "WARNING: your distro $DISTRO does not provide (at least) the Firefly release. Please use Ubuntu Trusty or Fedora 20 (and higher)"
115 115
         if [[ "$FORCE_CEPH_INSTALL" != "yes" ]]; then
116 116
             die $LINENO "If you wish to install Ceph on this distribution anyway run with FORCE_CEPH_INSTALL=yes"
... ...
@@ -173,7 +173,7 @@ source $TOP_DIR/stackrc
173 173
 
174 174
 # Warn users who aren't on an explicitly supported distro, but allow them to
175 175
 # override check and attempt installation with ``FORCE=yes ./stack``
176
-if [[ ! ${DISTRO} =~ (precise|trusty|utopic|vivid|7.0|wheezy|sid|testing|jessie|f20|f21|f22|rhel7) ]]; then
176
+if [[ ! ${DISTRO} =~ (precise|trusty|utopic|vivid|7.0|wheezy|sid|testing|jessie|f21|f22|rhel7) ]]; then
177 177
     echo "WARNING: this script has not been tested on $DISTRO"
178 178
     if [[ "$FORCE" != "yes" ]]; then
179 179
         die $LINENO "If you wish to run this script anyway run with FORCE=yes"