Created
September 15, 2014 22:11
-
-
Save stevenringo/8c70bd148ac0d24bff66 to your computer and use it in GitHub Desktop.
Ansible double interpolation
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
- name: create required directories | |
sudo_user: "{{ deploy_user }}" | |
file: path="{{ item }}" state=directory owner={{ deploy_user }} group={{ deploy_user }} mode=0755 | |
with_items: | |
- "{{ git_repo_path }}" | |
- "{{ shared_path }}" | |
- "{{ archive_path }}" | |
- "{{ releases_path }}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment