Explorar el Código

remove prefix when not needed

master
Robert Fairburn hace 10 años
padre
commit
ba72c1e8b7
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. +4
    -4
      openssh/files/sshd_config

+ 4
- 4
openssh/files/sshd_config Ver fichero

@@ -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 -%}

Cargando…
Cancelar
Guardar