From: François Charlier Date: Mon, 11 Jan 2016 16:05:53 +0000 (+0100) Subject: Fix failing install-ansible test X-Git-Tag: v1.0.0~68^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F474%2Fhead;p=ceph-ansible.git Fix failing install-ansible test Fix test for Red Hat Enterprise Server and add a default case. --- diff --git a/install-ansible.sh b/install-ansible.sh index 6e559e925..494226b78 100644 --- a/install-ansible.sh +++ b/install-ansible.sh @@ -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