This commit is contained in:
2023-09-12 07:46:55 +02:00
parent 8067b311fd
commit 26e4c5d5f8
8 changed files with 105 additions and 7 deletions

View File

@ -80,3 +80,4 @@ hunshachang\.com$
likelark\.com$
mlmlh\.xyz$
osdh\.net$
trentbbs\.com$

View File

@ -166,3 +166,5 @@
46.36.39.0/24
# US
91.193.19.0/24
# US
103.125.147.0/24

View File

@ -110,3 +110,4 @@ joshua24\.com$
cityboxing\.com$
clotheswithoutlimits\.com$
distrowatch\.com$
designerwicker\.com$

View File

@ -17,7 +17,11 @@ auto {{ config.device }}
allow-{{ stanza }}
{% endfor -%}
iface {{ config.device }} {{ config.family | default('inet', true) }} {{ config.method | default('static', true) }}
{% if config.method == "static" %}
{% if config.method == "manual" %}
{% if config.hwaddress is defined and config.hwaddress %}
hwaddress {{ config.hwaddress }}
{% endif %}
{% elif config.method == "static" %}
{% if (config.description is defined and config.description) %}
description {{ config.description }}
{% endif %}