summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorrebortg <github@ghlr.de>2024-09-30 22:31:16 +0200
committerrebortg <github@ghlr.de>2024-10-03 21:23:23 +0200
commit1749c3a99b88c8376b505d0d776cc9b4d5f167cd (patch)
tree2dcd6a8f92a1f2af721081dfe4b92f32c559ac09 /data
parenta0c15a159e54cb1b6abba7a0a6a0a793a53915d0 (diff)
downloadvyos-1x-1749c3a99b88c8376b505d0d776cc9b4d5f167cd.tar.gz
vyos-1x-1749c3a99b88c8376b505d0d776cc9b4d5f167cd.zip
T973: remove irrelevant standard values
Diffstat (limited to 'data')
-rw-r--r--data/templates/node_exporter/node_exporter.service.j29
1 files changed, 6 insertions, 3 deletions
diff --git a/data/templates/node_exporter/node_exporter.service.j2 b/data/templates/node_exporter/node_exporter.service.j2
index 01dad5aa2..62e7e6774 100644
--- a/data/templates/node_exporter/node_exporter.service.j2
+++ b/data/templates/node_exporter/node_exporter.service.j2
@@ -9,9 +9,12 @@ After=network.target
User=node_exporter
{% endif %}
ExecStart={{ vrf_command }}/usr/sbin/node_exporter \
-{% for address in listen_address %}
+{% if listen_address is vyos_defined %}
+{% for address in listen_address %}
--web.listen-address={{ address }}:{{ port }}
-{% endfor %}
-
+{% endfor %}
+{% else %}
+ --web.listen-address=:{{ port }}
+{% endif %}
[Install]
WantedBy=multi-user.target