diff options
author | Scott Moser <smoser@ubuntu.com> | 2010-01-29 13:08:12 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2010-01-29 13:08:12 -0500 |
commit | 0f2d829a2709d049f5606cf89e5c70559024853e (patch) | |
tree | 37ec2930631776cea59dfdd9463aa1609905dfb6 /ec2init | |
parent | fddec92b8ea39515ff19be1117fcacb32944ab72 (diff) | |
download | vyos-cloud-init-0f2d829a2709d049f5606cf89e5c70559024853e.tar.gz vyos-cloud-init-0f2d829a2709d049f5606cf89e5c70559024853e.zip |
move etc/ec2-init/templates to etc/cloud/templates
Diffstat (limited to 'ec2init')
-rw-r--r-- | ec2init/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ec2init/util.py b/ec2init/util.py index 30ce1d82..9b9f6f4d 100644 --- a/ec2init/util.py +++ b/ec2init/util.py @@ -72,7 +72,7 @@ def subp(args, input=None): return(out,err) def render_to_file(template, outfile, searchList): - t = Template(file='/etc/ec2-init/templates/%s.tmpl' % template, searchList=[searchList]) + t = Template(file='/etc/cloud/templates/%s.tmpl' % template, searchList=[searchList]) f = open(outfile, 'w') f.write(t.respond()) f.close() |