summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <bcoca@ansible.com>2016-01-25 12:18:48 -0500
committerBrian Coca <bcoca@ansible.com>2016-01-25 12:18:48 -0500
commit9abb1070440337b209433843805e39a7c51b4fee (patch)
treecd253fb4ec5b4444c18b381bd3fb393acf408696
parenta8ffa021344b5548813790f18dda68d32717a4d7 (diff)
parent043b2cbcb4b501cb74f2d30f8986c608e71e03b2 (diff)
downloadansible-9abb1070440337b209433843805e39a7c51b4fee.tar.gz
Merge pull request #14110 from infracaninophile/devel
Change example to use pkg rather than the obsolete pkg_add
-rw-r--r--docsite/rst/intro_bsd.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docsite/rst/intro_bsd.rst b/docsite/rst/intro_bsd.rst
index 17c1b8d151..ba0e07f2c8 100644
--- a/docsite/rst/intro_bsd.rst
+++ b/docsite/rst/intro_bsd.rst
@@ -30,7 +30,7 @@ Bootstrapping BSD
For Ansible to effectively manage your machine, we need to install Python along with a json library, in this case we are using Python 2.7 which already has json included.
On your control machine you can simply execute the following for most versions of FreeBSD::
- ansible -m raw -a “pkg_add -r python27” mybsdhost1
+ ansible -m raw -a “pkg install -y python27” mybsdhost1
Once this is done you can now use other Ansible modules aside from the ``raw`` module.