diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-05-01 19:53:25 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-05-01 19:53:25 +0200 |
commit | 59290c857237912dc5cc67733622e2604f1ff30a (patch) | |
tree | 96be7d3316a715fc78cd153ebfded3f1cca9b3ca /data | |
parent | 8abb6c0a74730c3dd675148e9eacbd458f0addcb (diff) | |
download | vyos-1x-59290c857237912dc5cc67733622e2604f1ff30a.tar.gz vyos-1x-59290c857237912dc5cc67733622e2604f1ff30a.zip |
system-options: T4353: fix Jinja2 linting errors
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/system/curlrc.j2 (renamed from data/templates/system/curlrc.tmpl) | 0 | ||||
-rw-r--r-- | data/templates/system/ssh_config.j2 (renamed from data/templates/system/ssh_config.tmpl) | 0 | ||||
-rw-r--r-- | data/templates/system/sysctl.conf.j2 (renamed from data/templates/system/sysctl.conf.tmpl) | 4 |
3 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/system/curlrc.tmpl b/data/templates/system/curlrc.j2 index be4efe8ba..be4efe8ba 100644 --- a/data/templates/system/curlrc.tmpl +++ b/data/templates/system/curlrc.j2 diff --git a/data/templates/system/ssh_config.tmpl b/data/templates/system/ssh_config.j2 index 1449f95b1..1449f95b1 100644 --- a/data/templates/system/ssh_config.tmpl +++ b/data/templates/system/ssh_config.j2 diff --git a/data/templates/system/sysctl.conf.tmpl b/data/templates/system/sysctl.conf.j2 index 3aa857647..59a19e157 100644 --- a/data/templates/system/sysctl.conf.tmpl +++ b/data/templates/system/sysctl.conf.j2 @@ -1,7 +1,7 @@ # autogenerated by system_sysctl.py
{% if parameter is vyos_defined %}
-{% for k, v in parameter.items() %}
+{% for k, v in parameter.items() %}
{{ k }} = {{ v.value }}
-{% endfor %}
+{% endfor %}
{% endif %}
|