From 66d914fb15cb3fad1ae09acc2682670a852bed4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Sat, 7 May 2016 02:14:46 +0200 Subject: [PATCH] install: remove epel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We just add epel to conviently install Ansible. However we don't keep it as it could disrupt ceph's installation and dependancies. Signed-off-by: Sébastien Han --- install-ansible.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install-ansible.sh b/install-ansible.sh index b3127d7b8..5e24c2f1a 100755 --- a/install-ansible.sh +++ b/install-ansible.sh @@ -27,6 +27,7 @@ elif [[ "Ubuntu" =~ $os_VENDOR ]]; then elif [[ "RedHatEnterpriseServer" =~ $os_VENDOR || "CentOS" =~ $os_VENDOR || -r /etc/redhat-release ]]; then rpm -q epel-release-* || rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm yum install -y ansible + yum remove -y $(rpm -q epel-release-*) else if [[ ! -x $(which lsb_release 2>/dev/null) ]]; then echo "lsb_release is not installed"