Fedora 23 supported
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
This commit is contained in:
parent
0b6a40bcab
commit
e0129f3c24
@ -8,9 +8,9 @@ gcc-c++
|
|||||||
gettext # used for compiling message catalogs
|
gettext # used for compiling message catalogs
|
||||||
git-core
|
git-core
|
||||||
graphviz # needed only for docs
|
graphviz # needed only for docs
|
||||||
iptables-services # NOPRIME f21,f22
|
iptables-services # NOPRIME f21,f22,f23
|
||||||
java-1.7.0-openjdk-headless # NOPRIME rhel7
|
java-1.7.0-openjdk-headless # NOPRIME rhel7
|
||||||
java-1.8.0-openjdk-headless # NOPRIME f21,f22
|
java-1.8.0-openjdk-headless # NOPRIME f21,f22,f23
|
||||||
libffi-devel
|
libffi-devel
|
||||||
libjpeg-turbo-devel # Pillow 3.0.0
|
libjpeg-turbo-devel # Pillow 3.0.0
|
||||||
libxml2-devel # lxml
|
libxml2-devel # lxml
|
||||||
|
2
lib/ceph
2
lib/ceph
@ -116,7 +116,7 @@ function undefine_virsh_secret {
|
|||||||
|
|
||||||
# check_os_support_ceph() - Check if the operating system provides a decent version of Ceph
|
# check_os_support_ceph() - Check if the operating system provides a decent version of Ceph
|
||||||
function check_os_support_ceph {
|
function check_os_support_ceph {
|
||||||
if [[ ! ${DISTRO} =~ (trusty|f21|f22) ]]; then
|
if [[ ! ${DISTRO} =~ (trusty|f21|f22|f23) ]]; then
|
||||||
echo "WARNING: your distro $DISTRO does not provide (at least) the Firefly release. Please use Ubuntu Trusty or Fedora 20 (and higher)"
|
echo "WARNING: your distro $DISTRO does not provide (at least) the Firefly release. Please use Ubuntu Trusty or Fedora 20 (and higher)"
|
||||||
if [[ "$FORCE_CEPH_INSTALL" != "yes" ]]; then
|
if [[ "$FORCE_CEPH_INSTALL" != "yes" ]]; then
|
||||||
die $LINENO "If you wish to install Ceph on this distribution anyway run with FORCE_CEPH_INSTALL=yes"
|
die $LINENO "If you wish to install Ceph on this distribution anyway run with FORCE_CEPH_INSTALL=yes"
|
||||||
|
2
stack.sh
2
stack.sh
@ -192,7 +192,7 @@ source $TOP_DIR/stackrc
|
|||||||
|
|
||||||
# Warn users who aren't on an explicitly supported distro, but allow them to
|
# Warn users who aren't on an explicitly supported distro, but allow them to
|
||||||
# override check and attempt installation with ``FORCE=yes ./stack``
|
# override check and attempt installation with ``FORCE=yes ./stack``
|
||||||
if [[ ! ${DISTRO} =~ (precise|trusty|vivid|wily|7.0|wheezy|sid|testing|jessie|f21|f22|rhel7) ]]; then
|
if [[ ! ${DISTRO} =~ (precise|trusty|vivid|wily|7.0|wheezy|sid|testing|jessie|f21|f22|f23|rhel7) ]]; then
|
||||||
echo "WARNING: this script has not been tested on $DISTRO"
|
echo "WARNING: this script has not been tested on $DISTRO"
|
||||||
if [[ "$FORCE" != "yes" ]]; then
|
if [[ "$FORCE" != "yes" ]]; then
|
||||||
die $LINENO "If you wish to run this script anyway run with FORCE=yes"
|
die $LINENO "If you wish to run this script anyway run with FORCE=yes"
|
||||||
|
Loading…
Reference in New Issue
Block a user