net-analyzer/prometheus-snmp_exporter: fix typo in initd
authorAustin English <wizardedit@gentoo.org>
Mon, 12 Mar 2018 22:48:16 +0000 (17:48 -0500)
committerAustin English <wizardedit@gentoo.org>
Mon, 12 Mar 2018 22:48:16 +0000 (17:48 -0500)
austin@austin1 ~ $ touch snmp.yml

austin@austin1 ~ $ /usr/bin/snmp_exporter --config-file=snmp.yml
snmp_exporter: error: unknown long flag '--config-file', try --help

austin@austin1 ~ $ /usr/bin/snmp_exporter --config.file=snmp.yml
INFO[0000] Starting snmp exporter (version=0.8.0, branch=non-git, revision=17cefca)  source="main.go:125"
INFO[0000] Build context (go=go1.9.4, user=portage@releng3, date=20180222-23:34:24)  source="main.go:126"
INFO[0000] Listening on :9116                            source="main.go:205"

Package-Manager: Portage-2.3.19, Repoman-2.3.6

net-analyzer/prometheus-snmp_exporter/files/prometheus-snmp_exporter.initd

index 4d620b54b17151d477e3cbc9678f8c6a2a66670b..b214422704e256dda6232448773e2297b90b86d4 100644 (file)
@@ -1,5 +1,5 @@
 #!/sbin/openrc-run
-# Copyright 2016-2017 Gentoo Foundation
+# Copyright 2016-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 description="Prometheus snmp exporter"
@@ -8,7 +8,7 @@ user=${user:-${RC_SVCNAME}}
 group=${group:-${RC_SVCNAME}}
 
 command="/usr/bin/snmp_exporter"
-command_args="${command_args:---config-file=/etc/snmp_exporter/snmp.yml}"
+command_args="${command_args:---config.file=/etc/snmp_exporter/snmp.yml}"
 command_background="true"
 start_stop_daemon_args="--user ${user} --group ${group} \
        --stdout /var/log/snmp_exporter/${RC_SVCNAME}.log \