Stop hardcoding /srv/puppet.debian.org/from-letsencrypt/ all over the place
[mirror/dsa-puppet.git] / modules / ssl / templates / key-chained.erb
1 <%=
2   dir = scope().call_function('hiera', ['paths.letsencrypt_dir'])
3
4   fn = "#{dir}/#{@name}.key"
5   out = File.read(fn)
6   out
7 %>
8 <%=
9   fn = "#{dir}/#{@name}.crt-chained"
10   out = File.read(fn)
11   out
12 %>