Skip to content
Snippets Groups Projects
Commit 538debfb authored by jurgenhaas's avatar jurgenhaas
Browse files

Merge branch 'release/1.1'

parents 73bffdea 6c976cf2
No related branches found
No related tags found
No related merge requests found
2015-11-16 version 1.1
======================
Enhance deploy playbook
......@@ -8,3 +8,17 @@
# file: deploy.yml
- include: "validate.yml"
- name: "Deploy | General"
hosts: all
sudo: no
tasks:
- name: "Deploy | Git"
git:
repo: "{{ deploy.repo }}"
dest: "{{ deploy.dest }}"
when: deploy is defined and deploy.type == "git"
- name: "Deploy | Scripts"
shell: "{{ item }}"
with_items: deploy.scripts
when: deploy.scripts is defined
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment