nfdump: add new package
Signed-off-by: W. Michael Petullo <mike@flyn.org>
This commit is contained in:
parent
05e23f15d9
commit
6cf3da648b
3 changed files with 92 additions and 0 deletions
58
net/nfdump/Makefile
Normal file
58
net/nfdump/Makefile
Normal file
|
@ -0,0 +1,58 @@
|
|||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=nfdump
|
||||
PKG_VERSION:=1.6.18
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
|
||||
|
||||
PKG_LICENSE:=BSD-3-Clause
|
||||
PKG_LICENSE_FILES:=COPYING
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://codeload.github.com/phaag/nfdump/tar.gz/v$(PKG_VERSION)?
|
||||
PKG_HASH:=5d6046bf7faa34713b004c6cf8b3d30027c761c5ac22a3195d49388342e8147e
|
||||
|
||||
PKG_INSTALL:=1
|
||||
PKG_BUILD_PARALLEL:=1
|
||||
PKG_FIXUP:=autoreconf
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
include $(INCLUDE_DIR)/nls.mk
|
||||
|
||||
define Package/nfdump
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
DEPENDS:= +libbz2
|
||||
TITLE:= nfdump
|
||||
URL:=https://github.com/phaag/nfdump/
|
||||
endef
|
||||
|
||||
define Package/nfdump/description
|
||||
NetFlow collecting and processing tools
|
||||
endef
|
||||
|
||||
define Package/nfdump/conffiles
|
||||
/etc/config/nfcapd
|
||||
endef
|
||||
|
||||
define Package/nfdump/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libnfdump-$(PKG_VERSION).so $(1)/usr/lib/
|
||||
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/config
|
||||
$(INSTALL_DATA) ./files/nfcapd.config $(1)/etc/config/nfcapd
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/nfcapd.init $(1)/etc/init.d/nfcapd
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,nfdump))
|
4
net/nfdump/files/nfcapd.config
Normal file
4
net/nfdump/files/nfcapd.config
Normal file
|
@ -0,0 +1,4 @@
|
|||
config nfcapd nfcapd
|
||||
option enabled 0
|
||||
option port 9995
|
||||
option logdir /var/log
|
30
net/nfdump/files/nfcapd.init
Normal file
30
net/nfdump/files/nfcapd.init
Normal file
|
@ -0,0 +1,30 @@
|
|||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2009-2012 OpenWrt.org
|
||||
|
||||
START=60
|
||||
USE_PROCD=1
|
||||
pidfile=/var/run/nfcapd.pid
|
||||
PROG=/usr/bin/nfcapd
|
||||
|
||||
validate_nfcapd_section() {
|
||||
uci_validate_section nfcapd nfcapd "${1}" \
|
||||
'enabled:bool' \
|
||||
'port:string' \
|
||||
'logdir:string'
|
||||
}
|
||||
|
||||
start_service() {
|
||||
validate_nfcapd_section nfcapd || {
|
||||
echo "validation failed"
|
||||
return 1
|
||||
}
|
||||
|
||||
[ "$enabled" -gt 0 ] && {
|
||||
procd_open_instance
|
||||
procd_set_param stdout 1
|
||||
procd_set_param stderr 1
|
||||
procd_set_param command "$PROG"
|
||||
procd_append_param command -S 1 -P "$pidfile" -p "$port" -l "$logdir"
|
||||
procd_close_instance
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue