Created
April 1, 2015 16:49
-
-
Save alloy-d/643ac0b9fc30da759193 to your computer and use it in GitHub Desktop.
Ansible playbook for a simple test of what data comes from the git module.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - hosts: localhost | |
| connection: local | |
| gather_facts: false | |
| tasks: | |
| - name: clone test repo | |
| git: | |
| repo: git://github.com/intridea/hashie | |
| update: yes | |
| version: master | |
| dest: repo | |
| register: repo | |
| - name: wtf is the repo | |
| debug: var=repo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment