Skip to content

Instantly share code, notes, and snippets.

@fxfitz
Created January 13, 2016 19:35
Show Gist options
  • Save fxfitz/a9a072d146b3196499cb to your computer and use it in GitHub Desktop.
Save fxfitz/a9a072d146b3196499cb to your computer and use it in GitHub Desktop.
#####################
MAIN PLAYBOOK EXCERPT
#####################
- include: tasks/configure-restart.yaml
vars:
agent_state: present
#################
TASK FILE EXCERPT
#################
- name: Modify configuration
lineinfile:
dest: '{{ crazy.stat.path }}'
line: 'some silly configuration line'
state: '{{ agent_state }}'
when: crazy.stat.exists
#####
ERROR
#####
fatal: [x.x.x.x] => One or more undefined variables: 'agent_state' is undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment