lib/ceph: Fix fedora broken link

Removes the broken fedora 20 url and ensures that ceph and
radosgw packages are installed from the distro repos. See
the associated LP bug 1521073 for more details.

Change-Id: Id11c51bd5451f5c7886696b519ad43f012e83d74
Closes-bug: 1521073
This commit is contained in:
Deepak C Shetty
2015-12-01 12:52:32 +05:30
parent ee36d5349e
commit 6909565540

View File

@@ -497,12 +497,11 @@ if is_ubuntu; then
| sudo tee /etc/apt/sources.list.d/ceph.list | sudo tee /etc/apt/sources.list.d/ceph.list
install_package ceph radosgw libnss3-tools install_package ceph radosgw libnss3-tools
elif is_fedora; then else
sudo rpm --import 'https://download.ceph.com/keys/release.asc' # Install directly from distro repos. See LP bug 1521073 for more details.
# If distro doesn't carry latest ceph, users can install latest ceph repo
sudo rpm \ # for their distro (if available) from download.ceph.com and then do
-Uvh http://ceph.com/rpm/fc20/x86_64/ceph-${CEPH_RELEASE}.el6.noarch.rpm # stack.sh
install_package ceph ceph-radosgw install_package ceph ceph-radosgw
fi fi
} }