From: Ken Dreyer Date: Tue, 3 Oct 2017 17:38:58 +0000 (-0600) Subject: docs: add instructions for installing Ansible X-Git-Tag: v3.0.0rc15~1^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1978%2Fhead;p=ceph-ansible.git docs: add instructions for installing Ansible Add RPM and DEB instructions for installing Ansible. --- diff --git a/docs/source/index.rst b/docs/source/index.rst index 1d4d2c855..58bdd0753 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -25,6 +25,34 @@ You can install directly from the source on github by following these steps: git checkout $branch + +Ansible on RHEL and CentOS +-------------------------- +You can acquire Ansible on RHEL and CentOS by installing from +`"Extras"`_. + +On RHEL:: + + subscription-manager repos --enable=rhel-7-server-extras-rpms + +(CentOS does not use subscription-manager and already has "Extras" enabled by default.) + +:: + + sudo yum install ansible + +Ansible on Ubuntu +----------------- +You can acquire Ansible on Ubuntu by using the `Ansible +PPA`_. + +:: + + sudo add-apt-repository ppa:ansible/ansible + sudo apt-get update + sudo apt-get install ansible + + Releases ========