Browse Source

prometheus-node-exporter-lua: fixed small warning

This happens during compilation:

Enabling network
./etc/init.d/prometheus-node-exporter-lua: line 7: /lib/functions/network.sh: No such file or directory

Signed-off-by: Rosen Penev <rosenp@gmail.com>
lilik-openwrt-22.03
Rosen Penev 5 years ago
parent
commit
3aa009478a
No known key found for this signature in database GPG Key ID: 36D31CFA845F0E3B
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      utils/prometheus-node-exporter-lua/Makefile
  2. +2
    -2
      utils/prometheus-node-exporter-lua/files/etc/init.d/prometheus-node-exporter-lua

+ 1
- 1
utils/prometheus-node-exporter-lua/Makefile View File

@ -5,7 +5,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=prometheus-node-exporter-lua PKG_NAME:=prometheus-node-exporter-lua
PKG_VERSION:=2019.11.17 PKG_VERSION:=2019.11.17
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_MAINTAINER:=Etienne CHAMPETIER <champetier.etienne@gmail.com> PKG_MAINTAINER:=Etienne CHAMPETIER <champetier.etienne@gmail.com>
PKG_LICENSE:=Apache-2.0 PKG_LICENSE:=Apache-2.0


+ 2
- 2
utils/prometheus-node-exporter-lua/files/etc/init.d/prometheus-node-exporter-lua View File

@ -4,13 +4,13 @@
START=60 START=60
USE_PROCD=1 USE_PROCD=1
. /lib/functions/network.sh
_log() { _log() {
logger -p daemon.info -t prometheus-node-exporter-lua "$@" logger -p daemon.info -t prometheus-node-exporter-lua "$@"
} }
start_service() { start_service() {
. /lib/functions/network.sh
local interface ipv6 port bind local interface ipv6 port bind
config_load prometheus-node-exporter-lua.main config_load prometheus-node-exporter-lua.main


Loading…
Cancel
Save