Fix to handle user directory within parameter 'template'.

reviewable/pr18780/r1
Jens Carl 9 years ago
parent 94b8ebe1bf
commit e25605cd5b

@ -146,6 +146,7 @@ EXAMPLES = '''
'''
import json
import os
import time
import yaml
@ -269,7 +270,7 @@ def main():
module.fail_json('Module parameter "template" or "template_url" is required if "state" is "present"')
if module.params['template'] is not None:
template_body = open(module.params['template'], 'r').read()
template_body = open(os.path.expanduser(module.params['template']), 'r').read()
else:
template_body = None

Loading…
Cancel
Save