summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSandra McCann <samccann@redhat.com>2020-02-17 11:53:16 -0500
committerGitHub <noreply@github.com>2020-02-17 10:53:16 -0600
commit39fef58beaca3510ec4465f74071c736578ccbf1 (patch)
treecd8bf0a982813ac26634ebb3475cab5dc260e460 /docs
parent62cc120dced87b1bf75cde8578ef17457b218c7c (diff)
downloadansible-39fef58beaca3510ec4465f74071c736578ccbf1.tar.gz
Add note that devel branch should not be used in real environments (#67483)
Diffstat (limited to 'docs')
-rw-r--r--docs/docsite/rst/installation_guide/intro_installation.rst19
1 files changed, 10 insertions, 9 deletions
diff --git a/docs/docsite/rst/installation_guide/intro_installation.rst b/docs/docsite/rst/installation_guide/intro_installation.rst
index 2db84baf20..21ed87e07c 100644
--- a/docs/docsite/rst/installation_guide/intro_installation.rst
+++ b/docs/docsite/rst/installation_guide/intro_installation.rst
@@ -84,11 +84,12 @@ Which Ansible version to install is based on your particular needs. You can choo
* Install the latest release with your OS package manager (for Red Hat Enterprise Linux (TM), CentOS, Fedora, Debian, or Ubuntu).
* Install with ``pip`` (the Python package manager).
-* Install from source to access the development (``devel``) version to use and test the latest features.
+* Install from source to access the development (``devel``) version to develop or test the latest features.
+.. note::
+
+ You should only run Ansible from ``devel`` if you are actively developing content for Ansible. This is a rapidly changing source of code and can become unstable at any point.
-Because Ansible runs so easily from source and does not require any installation of software on remote
-machines, many users will actually track the development version.
Ansible creates new releases two to three times a year. Due to this short release cycle,
minor bugs will generally be fixed in the next release versus maintaining backports on the stable branch.
@@ -307,7 +308,7 @@ Ansible can be installed with ``pip``, the Python package manager. It should be
Then install Ansible [1]_::
$ pip install --user ansible
-
+
For macOS, there is no need to use ``sudo`` or install additional fixes, simply access the Python module namespace for ``pip``::
$ python -m pip install --user ansible
@@ -360,13 +361,13 @@ If you wish to install Ansible globally, run the following commands::
Running Ansible from source (devel)
-----------------------------------
+.. note::
+
+ You should only run Ansible from ``devel`` if you are actively developing content for Ansible. This is a rapidly changing source of code and can become unstable at any point.
+
Ansible is easy to run from source. You do not need ``root`` permissions
to use it and there is no software to actually install. No daemons
-or database setup are required. Because of this, many users in our community use the
-development version of Ansible all of the time so they can take advantage of new features
-when they are implemented and easily contribute to the project. Because there is
-nothing to install, following the development version is significantly easier than most
-open source projects.
+or database setup are required.
.. note::