소스 검색

simplify and fix wg.conf output() macros

tags/v2.1^0
Maximilian Eschenbacher 5 년 전
부모
커밋
be1f11f32f
1개의 변경된 파일3개의 추가작업 그리고 8개의 파일을 삭제
  1. +3
    -8
      wireguard/files/wg.conf

+ 3
- 8
wireguard/files/wg.conf 파일 보기

@@ -1,17 +1,12 @@
{%- macro output(key, value) -%}
{%- if key in ['Address', 'DNS', 'AllowedIPs'] -%}
{{output_list(key, value)}}
{%- else -%}
{{key}} = {{value}}
{%- endif -%}
{%- endmacro -%}
{%- macro output_list(key, value) -%}
{%- if value is string -%}
{{key}} = {{value}}
{%- else -%}
{%- elif value is iterable -%}
{%- for item in value %}
{{key}} = {{item}}
{%- endfor -%}
{%- else -%}
{{key}} = {{value}}
{%- endif -%}
{%- endmacro -%}
[Interface]

Loading…
취소
저장