32a3ce3f5a
Change-Id: I82274ef59eda00a735579082bbd37b64c0599c7d
10 lines
341 B
YAML
10 lines
341 B
YAML
- hosts: all
|
|
tasks:
|
|
- name: Ensure test_variable was written to file
|
|
lineinfile:
|
|
line: "{{ packer_variables.packer_test_content | replace('\n', '') }}"
|
|
dest: "{{ packer_environment.PACKER_TEST_FILE }}"
|
|
check_mode: yes
|
|
register: test_variable_presence
|
|
failed_when: test_variable_presence.changed
|