Fixed up KV munging in runner, misc fixes to copy, setup, and template modules

reviewable/pr18780/r1
Michael DeHaan 13 years ago
parent 5e6bf63215
commit 07d17e4cb4

@ -2,6 +2,7 @@
import sys
import os
import shlex
try:
import json

@ -16,7 +16,7 @@ except ImportError:
input_data = sys.argv[1:]
new_options = dict([ x.split('=') for x in input_data ])
ansible_file = new_options.get('metadata', DEFAULT_ANSIBLE_SETUP)
ansible_dir = os.path.dirname(metadata)
ansible_dir = os.path.dirname(ansible_file)
# create the config dir if it doesn't exist
@ -24,6 +24,7 @@ if not os.path.exists(ansible_dir):
os.makedirs(ansible_dir)
changed = False
md5sum = None
if not os.path.exists(ansible_file):
changed = True
else:

@ -3,6 +3,7 @@
import sys
import os
import jinja2
import shlex
try:
import json
except ImportError:

Loading…
Cancel
Save