From 1c801ac57474aec062d1f6e76af403fc2824e4d5 Mon Sep 17 00:00:00 2001 From: Sam Doran Date: Thu, 13 Oct 2016 09:39:15 -0400 Subject: [PATCH] Change example syntax on git module --- lib/ansible/modules/source_control/git.py | 27 +++++++++++++++++------ 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/lib/ansible/modules/source_control/git.py b/lib/ansible/modules/source_control/git.py index 06965f03a98..a7cb4ae65c6 100644 --- a/lib/ansible/modules/source_control/git.py +++ b/lib/ansible/modules/source_control/git.py @@ -194,22 +194,35 @@ notes: EXAMPLES = ''' # Example git checkout from Ansible Playbooks -- git: repo=git://foosball.example.org/path/to/repo.git - dest=/srv/checkout - version=release-0.22 +- git: + repo: 'git://foosball.example.org/path/to/repo.git' + dest: /srv/checkout + version: release-0.22 # Example read-write git checkout from github -- git: repo=ssh://git@github.com/mylogin/hello.git dest=/home/mylogin/hello +- git: + repo: 'ssh://git@github.com/mylogin/hello.git' + dest: /home/mylogin/hello # Example just ensuring the repo checkout exists -- git: repo=git://foosball.example.org/path/to/repo.git dest=/srv/checkout update=no +- git: + repo: 'git://foosball.example.org/path/to/repo.git' + dest: /srv/checkout + update: no # Example just get information about the repository whether or not it has # already been cloned locally. -- git: repo=git://foosball.example.org/path/to/repo.git dest=/srv/checkout clone=no update=no +- git: + repo: 'git://foosball.example.org/path/to/repo.git' + dest: /srv/checkout + clone: no + update: no # Example checkout a github repo and use refspec to fetch all pull requests -- git: repo=https://github.com/ansible/ansible-examples.git dest=/src/ansible-examples refspec=+refs/pull/*:refs/heads/* +- git: + repo: 'https://github.com/ansible/ansible-examples.git' + dest: /src/ansible-examples + refspec: '+refs/pull/*:refs/heads/*' ''' import os