summaryrefslogtreecommitdiff
path: root/cloudinit/templater.py
diff options
context:
space:
mode:
Diffstat (limited to 'cloudinit/templater.py')
-rw-r--r--cloudinit/templater.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/cloudinit/templater.py b/cloudinit/templater.py
index 4d712829..8f98bb5d 100644
--- a/cloudinit/templater.py
+++ b/cloudinit/templater.py
@@ -149,12 +149,6 @@ def render_to_file(fn, outfn, params, mode=0o644):
util.write_file(outfn, contents, mode=mode)
-def render_string_to_file(content, outfn, params, mode=0o644):
- """Render string"""
- contents = render_string(content, params)
- util.write_file(outfn, contents, mode=mode)
-
-
def render_string(content, params):
"""Render string"""
if not params: