diff options
-rw-r--r-- | ec2init/util.py | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
2 files changed, 2 insertions, 2 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() @@ -35,7 +35,7 @@ setup(name='EC2-init', 'cloud-init-cfg.py' ], data_files=[('/etc/cloud', ['cloud.cfg']), - ('/etc/ec2-init/templates', glob('templates/*')), + ('/etc/cloud/templates', glob('templates/*')), ('/etc/init', glob('upstart/*.conf')), ('/usr/share/ec2-init', []), ('/usr/share/doc/ec2-init', glob('doc/*.txt')), |