Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
3a8c277c
Commit
3a8c277c
authored
Aug 24, 2012
by
Dane Summers
Committed by
Michael DeHaan
Aug 27, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated subversion/git RST for new subversion module and git force option
parent
922e34c1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
0 deletions
+32
-0
README.md
+5
-0
rst/modules.rst
+1
-0
rst/modules/git.rst
+3
-0
rst/modules/subversion.rst
+23
-0
No files found.
README.md
View file @
3a8c277c
...
...
@@ -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
======
...
...
rst/modules.rst
View file @
3a8c277c
...
...
@@ -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
...
...
rst/modules/git.rst
View file @
3a8c277c
...
...
@@ -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`::
...
...
rst/modules/subversion.rst
0 → 100644
View file @
3a8c277c
.. _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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment