From b82fb86d83cccc220040f0896a389ee54d5c0634 Mon Sep 17 00:00:00 2001 From: transcaffeine Date: Sun, 25 Jan 2026 14:58:51 +0100 Subject: [PATCH] fix(wg_quick): fix syntax error in Table definition --- roles/wg_quick/templates/wg-quick.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/wg_quick/templates/wg-quick.conf.j2 b/roles/wg_quick/templates/wg-quick.conf.j2 index e5297e9..d219dd1 100644 --- a/roles/wg_quick/templates/wg-quick.conf.j2 +++ b/roles/wg_quick/templates/wg-quick.conf.j2 @@ -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('; ') }}"