From 7a40ed41f70663d108a90b2c4a8ec7c596e499b8 Mon Sep 17 00:00:00 2001 From: Jimmy Tang Date: Mon, 4 Feb 2013 19:56:31 +0000 Subject: [PATCH] Documentation Fixes relating to OSX and macports Insert some notes about installing on OSX via macports --- docsite/rst/gettingstarted.rst | 22 ++++++++++++++++++++++ packaging/macports/README.md | 13 +++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 packaging/macports/README.md diff --git a/docsite/rst/gettingstarted.rst b/docsite/rst/gettingstarted.rst index da72d1958b..2f02b3348a 100644 --- a/docsite/rst/gettingstarted.rst +++ b/docsite/rst/gettingstarted.rst @@ -125,6 +125,28 @@ Make sure you have ``rpm-build``, ``make``, and ``python2-devel`` installed. $ make rpm $ sudo rpm -Uvh ~/rpmbuild/ansible-*.noarch.rpm +Via MacPorts +++++++++++++ + +An OSX port is available via MacPorts, to install the stable version of +Ansible from MacPorts (this is the recommended way), run: + +.. code-block:: bash + + $ sudo port install ansible + +If you wish to install the latest build via the MacPorts system from a +git checkout, run: + +.. code-block:: bash + + $ git clone git://github.com/ansible/ansible.git + $ cd ./ansible/packaging/macports + $ sudo port install + +Please refer to the documentation at for +further information on using Portfiles with MacPorts. + Debian, Gentoo, Arch, Others ++++++++++++++++++++++++++++ diff --git a/packaging/macports/README.md b/packaging/macports/README.md new file mode 100644 index 0000000000..118e414881 --- /dev/null +++ b/packaging/macports/README.md @@ -0,0 +1,13 @@ +This portfile installs ansible from the git repository, it will install the +latest and greatest version of ansible. This portfile does not install the +required dependancies to run in fireball mode. + +If you wish to run a stable version of ansible please do the following + +First update your macports repo to the latest versions + + $ sudo port sync + +Then install ansible + + $ sudo port install ansible