fix(wg_quick): fix syntax error in Table definition

This commit is contained in:
2026-01-25 14:58:51 +01:00
parent 3c0f9efbb3
commit b82fb86d83

View File

@@ -8,7 +8,7 @@ PrivateKey = {{ wg_quick_iface.private_key }}
PrivateKeyFile = {{ wg_quick_iface.private_key_file }}
{% endif %}
{% if wg_quick_iface.table is defined %}
Table = {{ wg_quick_iface.table | ternary('On', 'Off') }}
Table = {{ wg_quick_iface.table | ternary('on', 'off') }}
{% endif %}
{% if wg_quick_iface.post_up %}
PostUp = /bin/bash -c "{{ wg_quick_iface.post_up | join('; ') }}"