浏览代码

remove prefix when not needed

tags/v0.41.0
Robert Fairburn 10 年前
父节点
当前提交
ba72c1e8b7
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. +4
    -4
      openssh/files/sshd_config

+ 4
- 4
openssh/files/sshd_config 查看文件

@@ -7,14 +7,14 @@
{%- macro render_option(keyword, default, config_dict=sshd_config) -%}
{%- set value = config_dict.get(keyword, default) -%}
{%- if value is sameas true -%}
{{ prefix }}{{ keyword }} yes
{{ keyword }} yes
{%- elif value is sameas false -%}
{{ prefix }}{{ keyword }} no
{{ keyword }} no
{%- elif value is string or value is number -%}
{{ prefix }}{{ keyword }} {{ value }}
{{ keyword }} {{ value }}
{%- else -%}
{%- for single_value in value -%}
{{ prefix }}{{ keyword }} {{ single_value }}
{{ keyword }} {{ single_value }}
{% endfor -%}
{%- endif -%}
{%- endmacro -%}

正在加载...
取消
保存