diff --git a/README.md b/README.md index 8a6db043d8..214b9f3aae 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,11 @@ on the documentation project. If you are using ansible at your company or software project, additions to the "Who Uses Ansible" page are welcome. Email Michael at the address below to be added. +Dependencies +============ + +Jinja2 and Sphinx are required to build this site. + Author ====== diff --git a/rst/modules.rst b/rst/modules.rst index 512d3dabfa..16712d414c 100644 --- a/rst/modules.rst +++ b/rst/modules.rst @@ -74,6 +74,7 @@ Let's see what's available in the Ansible module library, out of the box: .. include:: modules/service.rst .. include:: modules/setup.rst .. include:: modules/shell.rst +.. include:: modules/subversion.rst .. include:: modules/supervisorctl.rst .. include:: modules/template.rst .. include:: modules/user.rst diff --git a/rst/modules/git.rst b/rst/modules/git.rst index d6b67debf1..1376a72935 100644 --- a/rst/modules/git.rst +++ b/rst/modules/git.rst @@ -17,6 +17,9 @@ Deploys software (or files) from git checkouts. +--------------------+----------+---------+----------------------------------------------------------------------------+ | remote | no | origin | name of the remote branch | +--------------------+----------+---------+----------------------------------------------------------------------------+ +| force | no | yes | (New in 0.8) If yes, any modified files in the working repository will be | +| | | | thrown out. If no, this module will fail if it encounters modified files. | ++--------------------+----------+---------+----------------------------------------------------------------------------+ Example action from Ansible :doc:`playbooks`:: diff --git a/rst/modules/subversion.rst b/rst/modules/subversion.rst new file mode 100644 index 0000000000..1bd0d6d20e --- /dev/null +++ b/rst/modules/subversion.rst @@ -0,0 +1,23 @@ +.. _subversion: + +subversion +``` + +.. versionadded:: 0.8 + +Deploys a subversion repository. + ++--------------------+----------+---------+----------------------------------------------------------------------------+ +| parameter | required | default | comments | ++====================+==========+=========+============================================================================+ +| repo | yes | | The subversion URL to the repository. | ++--------------------+----------+---------+----------------------------------------------------------------------------+ +| dest | yes | | Absolute path where the repository should be deployed. | ++--------------------+----------+---------+----------------------------------------------------------------------------+ +| force | no | yes | If yes, any modified files in the working repository will be | +| | | | thrown out. If no, this module will fail if it encounters modified files. | ++--------------------+----------+---------+----------------------------------------------------------------------------+ + +Example action from Ansible :doc:`playbooks`:: + + subversion repo=svn+ssh://an.example.org/path/to/repo dest=/src/checkout