Skip to content

Instantly share code, notes, and snippets.

@knakayama
Created October 30, 2015 03:52
Show Gist options
  • Select an option

  • Save knakayama/bc0033aed753fbd83965 to your computer and use it in GitHub Desktop.

Select an option

Save knakayama/bc0033aed753fbd83965 to your computer and use it in GitHub Desktop.
---
- hosts: all
connection: local
pre_tasks:
- name: pre task
shell: |
date
register: pre
- name: pre task debug
debug:
var: pre
tasks:
- name: task
shell: |
date
register: task
- name: task debug
debug:
var: task
post_tasks:
- name: post task
shell: |
date
register: post
- name: post task debug
debug:
var: post
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment