Commit 8d0ceeca by Toshio Kuratomi

Make template test work with both py2.6 and 2.7+

parent aafda44b
templated_var_loaded
{
"bool": true,
"multi_part": "1Foo",
"number": 5,
"string_num": "5"
}
templated_var_loaded templated_var_loaded
{ {
"bool": true, "bool": true,
"multi_part": "1Foo", "multi_part": "1Foo",
"number": 5, "number": 5,
"string_num": "5" "string_num": "5"
} }
...@@ -41,8 +41,18 @@ ...@@ -41,8 +41,18 @@
# VERIFY CONTENTS # VERIFY CONTENTS
- name: check what python version ansible is running on
command: python -c 'import distutils.sysconfig ; print(distutils.sysconfig.get_python_version())'
register: pyver
delegate_to: localhost
- name: copy known good into place - name: copy known good into place
copy: src=foo.txt dest={{output_dir}}/foo.txt copy: src=foo.txt dest={{output_dir}}/foo.txt
when: pyver.stdout != '2.6'
- name: copy known good into place
copy: src=foo-py2.6.txt dest={{output_dir}}/foo.txt
when: pyver.stdout == '2.6'
- name: compare templated file to known good - name: compare templated file to known good
shell: diff {{output_dir}}/foo.templated {{output_dir}}/foo.txt shell: diff {{output_dir}}/foo.templated {{output_dir}}/foo.txt
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment