diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-27 19:38:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 19:38:53 +0200 |
commit | 536fd31f868a19ccbea72a637cb6b984fa368ce9 (patch) | |
tree | 67f2740ee48df38c8dacbcebdd901af129f4f8a8 /python/vyos/template.py | |
parent | 9bdc3dca0d1b2cec3422b08c186af80ac2aa665e (diff) | |
parent | 2bf12b579e083a8b527d3202ced365b8adf32625 (diff) | |
download | vyos-1x-536fd31f868a19ccbea72a637cb6b984fa368ce9.tar.gz vyos-1x-536fd31f868a19ccbea72a637cb6b984fa368ce9.zip |
Merge pull request #381 from thomas-mangin/T2388
template: T2388: move mkdir/chmod/chown within render()
Diffstat (limited to 'python/vyos/template.py')
-rw-r--r-- | python/vyos/template.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/python/vyos/template.py b/python/vyos/template.py index 6c73ce753..e4b253ed3 100644 --- a/python/vyos/template.py +++ b/python/vyos/template.py @@ -19,6 +19,7 @@ from jinja2 import Environment from jinja2 import FileSystemLoader from vyos.defaults import directories +from vyos.util import chmod, chown, makedir # reuse the same Environment to improve performance @@ -32,7 +33,7 @@ _templates_mem = { } -def render(destination, template, content, trim_blocks=False, formater=None): +def render(destination, template, content, trim_blocks=False, formater=None, permission=None, user=None, group=None): """ render a template from the template directory, it will raise on any errors destination: the file where the rendered template must be saved @@ -46,6 +47,10 @@ def render(destination, template, content, trim_blocks=False, formater=None): (recovering the load time and overhead caused by having the file out of the code) """ + # Create the directory if it does not exists + folder = os.path.dirname(destination) + makedir(folder, user, group) + # Setup a renderer for the given template # This is cached and re-used for performance if template not in _templates_mem[trim_blocks]: @@ -63,3 +68,6 @@ def render(destination, template, content, trim_blocks=False, formater=None): # Write client config file with open(destination, 'w') as f: f.write(content) + + chmod(destination, permission) + chown(destination, user, group) |