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
This commit is contained in:
parent
4f9d2aa632
commit
eecb983529
@ -7,9 +7,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 f22,f23,f24
|
iptables-services # NOPRIME f23,f24
|
||||||
java-1.7.0-openjdk-headless # NOPRIME rhel7
|
java-1.7.0-openjdk-headless # NOPRIME rhel7
|
||||||
java-1.8.0-openjdk-headless # NOPRIME f22,f23,f24
|
java-1.8.0-openjdk-headless # NOPRIME f23,f24
|
||||||
libffi-devel
|
libffi-devel
|
||||||
libjpeg-turbo-devel # Pillow 3.0.0
|
libjpeg-turbo-devel # Pillow 3.0.0
|
||||||
libxml2-devel # lxml
|
libxml2-devel # lxml
|
||||||
|
@ -7,7 +7,7 @@ gawk
|
|||||||
genisoimage # required for config_drive
|
genisoimage # required for config_drive
|
||||||
iptables
|
iptables
|
||||||
iputils
|
iputils
|
||||||
kernel-modules # dist:f22,f23,f24
|
kernel-modules # dist:f23,f24
|
||||||
kpartx
|
kpartx
|
||||||
kvm # NOPRIME
|
kvm # NOPRIME
|
||||||
libvirt-bin # NOPRIME
|
libvirt-bin # NOPRIME
|
||||||
|
@ -2,7 +2,7 @@ curl
|
|||||||
liberasurecode-devel
|
liberasurecode-devel
|
||||||
memcached
|
memcached
|
||||||
pyxattr
|
pyxattr
|
||||||
rsync-daemon # dist:f22,f23,f24
|
rsync-daemon # dist:f23,f24
|
||||||
sqlite
|
sqlite
|
||||||
xfsprogs
|
xfsprogs
|
||||||
xinetd
|
xinetd
|
||||||
|
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|f22|f23|f24) ]]; then
|
if [[ ! ${DISTRO} =~ (trusty|f23|f24) ]]; 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
@ -185,7 +185,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} =~ (trusty|wily|xenial|7.0|wheezy|sid|testing|jessie|f22|f23|f24|rhel7|kvmibm1) ]]; then
|
if [[ ! ${DISTRO} =~ (trusty|wily|xenial|7.0|wheezy|sid|testing|jessie|f23|f24|rhel7|kvmibm1) ]]; 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