Merge pull request #474 from fcharlier/patch-1

Fix failing install-ansible test
pull/477/head
Leseb 2016-01-11 17:06:50 +01:00
commit 00f10c828a
1 changed files with 6 additions and 1 deletions

View File

@ -24,9 +24,14 @@ if [[ -x $(which lsb_release 2>/dev/null) ]]; then
add-apt-repository ppa:ansible/ansible
apt-get update
apt-get install -y ansible
else [[ "RedHatEnterpriseServer" =~ $os_VENDOR ]]; then
elif [[ "RedHatEnterpriseServer" =~ $os_VENDOR ]]; then
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum install -y ansible
else
echo "Unsupported platform ${os_VENDOR}: ${os_VERSION}"
echo "Please send a pull-request or open an issue"
echo "on https://github.com/ceph/ceph-ansible/"
exit 1
fi
elif [[ -r /etc/redhat-release ]]; then
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm