diff options
Diffstat (limited to 'sentinel-minipot/Makefile')
-rw-r--r-- | sentinel-minipot/Makefile | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/sentinel-minipot/Makefile b/sentinel-minipot/Makefile deleted file mode 100644 index 5ba9642..0000000 --- a/sentinel-minipot/Makefile +++ /dev/null @@ -1,66 +0,0 @@ -# -## Copyright (C) 2018-2020 CZ.NIC z.s.p.o. (https://www.nic.cz/) -# -## This is free software, licensed under the GNU General Public License v3. -# See /LICENSE for more information. -# # -# -include $(TOPDIR)/rules.mk - -PKG_NAME:=sentinel-minipot -#PKG_VERSION:=2.0.0 -PKG_RELEASE:=1 -PKG_SOURCE_URL:=https://gitlab.nic.cz/turris/sentinel/minipot.git -#PKG_SOURCE_VERSION:=v$(PKG_VERSION) -PKG_SOURCE_BRANCH:=telnet-debug - -PKG_MAINTAINER:=CZ.NIC <packaging@turris.cz> -PKG_LICENSE:=GPL-3.0-or-later -PKG_LICENSE_FILES:=LICENSE - -PKG_BUILD_DEPENDS:=argp-standalone - -PKG_FIXUP:=autoreconf - -include $(INCLUDE_DIR)/autopkg-branch.mk -include $(INCLUDE_DIR)/package.mk - -define Package/sentinel-minipot - SECTION:=net - CATEGORY:=Network - SUBMENU:=Sentinel - TITLE:=Minipots - URL:=https://gitlab.nic.cz/turris/sentinel/minipot - DEPENDS:=\ - +czmq \ - +libevent2 \ - +msgpack-c \ - +base64c \ - +sentinel-firewall \ - +sentinel-proxy -endef - -define Package/sentinel-minipot/description - Sentinel minipots. These are minimal honeypots. - Implements protocols: FTP, HTTP, SMTP submission and Telnet -endef - -define Package/sentinel-minipot/install - $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/sentinel-minipot $(1)/usr/bin/sentinel-minipot - - $(INSTALL_DIR) $(1)/etc/init.d - $(INSTALL_BIN) ./files/init $(1)/etc/init.d/sentinel-minipot - - $(INSTALL_DIR) $(1)/etc/uci-defaults - $(INSTALL_BIN) ./files/uci-defaults $(1)/etc/uci-defaults/99-sentinel-minipot-telnet - - $(INSTALL_DIR) $(1)/usr/libexec/sentinel/firewall.d - $(INSTALL_BIN) ./files/sentinel-firewall.sh $(1)/usr/libexec/sentinel/firewall.d/70-minipot.sh - $(INSTALL_DATA) ./files/defaults.sh $(1)/usr/libexec/sentinel/minipot-defaults.sh - - $(INSTALL_DIR) $(1)/usr/libexec/sentinel/reload_hooks.d - $(INSTALL_BIN) ./files/restart-minipot-hook.sh $(1)/usr/libexec/sentinel/reload_hooks.d/60_minipot.sh -endef - -$(eval $(call BuildPackage,sentinel-minipot)) |