This change allows to use f23 without the FORCE=yes option.
Make sure you have latest kernel, or you have kernel-modules
installed for the running kernel.
f21 support will be removed when the gate jobs are upgraded
to use newer fedora version.
Change-Id: I6e3e64088187a7f6da745e3cfb07524fd31782ab
| ... | ... |
@@ -8,9 +8,9 @@ gcc-c++ |
| 8 | 8 |
gettext # used for compiling message catalogs |
| 9 | 9 |
git-core |
| 10 | 10 |
graphviz # needed only for docs |
| 11 |
-iptables-services # NOPRIME f21,f22 |
|
| 11 |
+iptables-services # NOPRIME f21,f22,f23 |
|
| 12 | 12 |
java-1.7.0-openjdk-headless # NOPRIME rhel7 |
| 13 |
-java-1.8.0-openjdk-headless # NOPRIME f21,f22 |
|
| 13 |
+java-1.8.0-openjdk-headless # NOPRIME f21,f22,f23 |
|
| 14 | 14 |
libffi-devel |
| 15 | 15 |
libjpeg-turbo-devel # Pillow 3.0.0 |
| 16 | 16 |
libxml2-devel # lxml |
| ... | ... |
@@ -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|f21|f22) ]]; then
|
|
| 119 |
+ if [[ ! ${DISTRO} =~ (trusty|f21|f22|f23) ]]; 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" |
| ... | ... |
@@ -192,7 +192,7 @@ source $TOP_DIR/stackrc |
| 192 | 192 |
|
| 193 | 193 |
# Warn users who aren't on an explicitly supported distro, but allow them to |
| 194 | 194 |
# override check and attempt installation with ``FORCE=yes ./stack`` |
| 195 |
-if [[ ! ${DISTRO} =~ (precise|trusty|vivid|wily|7.0|wheezy|sid|testing|jessie|f21|f22|rhel7) ]]; then
|
|
| 195 |
+if [[ ! ${DISTRO} =~ (precise|trusty|vivid|wily|7.0|wheezy|sid|testing|jessie|f21|f22|f23|rhel7) ]]; then
|
|
| 196 | 196 |
echo "WARNING: this script has not been tested on $DISTRO" |
| 197 | 197 |
if [[ "$FORCE" != "yes" ]]; then |
| 198 | 198 |
die $LINENO "If you wish to run this script anyway run with FORCE=yes" |