2014-08-23 16:44:48 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-05-25 15:30:52 +02:00
|
|
|
<service version="1">
|
|
|
|
{% if 'short' in service %}<short>{{ service.short }}</short>{%- else %}<short>{{ name }}</short>{%- endif %}
|
|
|
|
{% if 'description' in service %}<description>{{ service.description }}</description>{%- endif %}
|
2015-03-11 15:04:00 +01:00
|
|
|
{%- if 'ports' in service %}
|
|
|
|
{%- if 'tcp' in service.ports %}
|
|
|
|
{%- for v in service.ports.tcp %}
|
|
|
|
<port port="{{ v }}" protocol="tcp" />
|
|
|
|
{%- endfor %}
|
|
|
|
{%- endif %}
|
|
|
|
{%- if 'udp' in service.ports %}
|
|
|
|
{%- for v in service.ports.udp %}
|
|
|
|
<port port="{{ v }}" protocol="udp" />
|
|
|
|
{%- endfor %}
|
|
|
|
{%- endif %}
|
|
|
|
{%- if 'modules' in service %}
|
|
|
|
{%- for v in service.modules %}
|
|
|
|
<module name="{{ v }}" />
|
|
|
|
{%- endfor %}
|
|
|
|
{%- endif %}
|
|
|
|
{%- endif %}
|
|
|
|
{%- if 'destinations' in service %}
|
|
|
|
{%- if 'ipv4' in service.destinations %}
|
|
|
|
{%- for v in service.destinations.ipv4 %}
|
|
|
|
<destination ipv4="{{ v }}" />
|
|
|
|
{%- endfor %}
|
|
|
|
{%- endif %}
|
|
|
|
{%- if 'ipv6' in service.destinations %}
|
|
|
|
{%- for v in service.destinations.ipv6 %}
|
|
|
|
<destination ipv6="{{ v }}" />
|
2015-03-11 15:38:54 +01:00
|
|
|
{%- endfor %}
|
2015-03-11 15:04:00 +01:00
|
|
|
{%- endif %}
|
|
|
|
{%- endif %}
|
2014-08-23 16:44:48 +02:00
|
|
|
</service>
|