diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-14 21:34:40 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-04-14 21:34:43 +0200 |
commit | b0acc3a58f75f01ff19dbc9544e681cfc9d50c8e (patch) | |
tree | 6397ac19ced890b7b5ec9ef17cb410880e66697c /src | |
parent | d40e86aeb4e91fa9f8191b3c49830d9ba227c92c (diff) | |
download | vyos-1x-b0acc3a58f75f01ff19dbc9544e681cfc9d50c8e.tar.gz vyos-1x-b0acc3a58f75f01ff19dbc9544e681cfc9d50c8e.zip |
ntp: T4353: fix Jinja2 linting errors
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/ntp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/ntp.py b/src/conf_mode/ntp.py index 52070aabc..0d6ec9ace 100755 --- a/src/conf_mode/ntp.py +++ b/src/conf_mode/ntp.py @@ -56,8 +56,8 @@ def generate(ntp): if not ntp: return None - render(config_file, 'ntp/ntpd.conf.tmpl', ntp) - render(systemd_override, 'ntp/override.conf.tmpl', ntp) + render(config_file, 'ntp/ntpd.conf.j2', ntp) + render(systemd_override, 'ntp/override.conf.j2', ntp) return None |