Skip to content

Commit

Permalink
Document need for Python 2.7.x to be activated in Xenial+. Fixes #82
Browse files Browse the repository at this point in the history
  • Loading branch information
smcmahon committed May 25, 2017
1 parent 4bbee04 commit 9499e4b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
4 changes: 4 additions & 0 deletions HISTORY.txt
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
1.2.17 (unreleased)

- Document need for Python 2.7.x to be activated in Xenial+.
Fixes #82.
[smcmahon]

- Use Plone 5.0.7 in samples.
[stevepiercy]

Expand Down
8 changes: 7 additions & 1 deletion README.rst
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,13 @@ TL;DR

.. warning::

This version of the playbook requires that the plone.plone_server role be 1.2.0+.
Ansible requires that the target server have a recent Python 2.x on the server. Newer platforms (like Ubuntu Xenial and later) may not have this activated on pristine new machines.

If you get connection errors from Ansible, check the remote machine to make sure Python 2.7 is available.
`which python2.7` will let you know.
If it's missing, use your package manager to install it.

On Ubuntu Xenial (16.0.4 LTS), `sudo apt-get install -y python` will do the trick.

License
-------
Expand Down
12 changes: 12 additions & 0 deletions docs/preparing.rst
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,15 @@ We have a few Ansible role dependencies which you may fulfill via Ansible Galaxy
ansible-galaxy -r requirements.yml -p roles install

This should be executed in your playbook directory. Downloaded requirements will be dropped into the ``roles`` directory there.

Remote setup
^^^^^^^^^^^^

Ansible requires that the target server have a recent Python 2.x on the server. Newer platforms (like Ubuntu Xenial and later) may not have this activated on pristine new machines.

If you get connection errors from Ansible, check the remote machine to make sure Python 2.7 is available.
`which python2.7` will let you know.
If it's missing, use your package manager to install it.

On Ubuntu Xenial (16.0.4 LTS), `sudo apt-get install -y python` will do the trick.

0 comments on commit 9499e4b

Please sign in to comment.