Added DOCUMENTATION to subversion module.
This commit is contained in:
parent
29ffed869c
commit
0d0bc5e620
1 changed files with 32 additions and 6 deletions
|
@ -18,12 +18,38 @@
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
# I wanted to keep this simple at first, so for now this checks out
|
DOCUMENTATION = '''
|
||||||
# from the given branch of a repo at a particular SHA or
|
---
|
||||||
# tag. Latest is not supported, you should not be doing
|
module: subversion
|
||||||
# that. Contribs welcome! -- MPD
|
short_description: Deploys a subversion repository.
|
||||||
|
description:
|
||||||
# requires subversion and grep on the client.
|
- This module is really simple, so for now this checks out from the given branch of a repo at a particular SHA or tag. Latest is not supported, you should not be doing that.
|
||||||
|
version_added: "0.7"
|
||||||
|
options:
|
||||||
|
repo:
|
||||||
|
description:
|
||||||
|
- The subversion URL to the repository.
|
||||||
|
required: true
|
||||||
|
default: null
|
||||||
|
dest:
|
||||||
|
description:
|
||||||
|
- Absolute path where the repository should be deployed.
|
||||||
|
required: true
|
||||||
|
default: null
|
||||||
|
force:
|
||||||
|
description:
|
||||||
|
- If yes, any modified files in the working repository will be discarded. If no, this module will fail if it encounters modified files.
|
||||||
|
required: false
|
||||||
|
default: yes
|
||||||
|
choices: [ "yes", "no" ]
|
||||||
|
examples:
|
||||||
|
- code: subversion repo=svn+ssh://an.example.org/path/to/repo dest=/src/checkout
|
||||||
|
description: Export subversion repository in a specified folder
|
||||||
|
notes:
|
||||||
|
- Requires subversion and grep on the client.
|
||||||
|
requirements: [ ]
|
||||||
|
author: Dane Summers
|
||||||
|
'''
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue