mirror of https://github.com/ceph/ceph-ansible.git
40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
#!/bin/bash
|
|
#
|
|
# THIS SCRIPT INSTALLS ANSIBLE
|
|
|
|
if [[ $EUID -ne 0 ]]; then
|
|
echo "You are NOT running this script as root."
|
|
echo "You should."
|
|
echo "Really."
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -x $(which lsb_release 2>/dev/null) ]]; then
|
|
os_VENDOR=$(lsb_release -i -s)
|
|
os_VERSION=$(lsb_release -c -s)
|
|
if [[ "Debian" =~ $os_VENDOR ]]; then
|
|
apt-get update
|
|
apt-get install python-pip python-dev git build-essential -y
|
|
pip install PyYAML jinja2 paramiko
|
|
git clone https://github.com/ansible/ansible.git
|
|
cd ansible
|
|
make install
|
|
mkdir /etc/ansible
|
|
elif [[ "Ubuntu" =~ $os_VENDOR ]]; then
|
|
add-apt-repository ppa:ansible/ansible
|
|
apt-get update
|
|
apt-get install -y ansible
|
|
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
|
|
yum install -y ansible
|
|
fi
|