diff options
author | Rosen Penev <rosenp@gmail.com> | 2019-06-18 18:57:54 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-18 18:57:54 -0700 |
commit | 205df2eb36971840849254816a602fa726faee7d (patch) | |
tree | fd88628755917eb20b97913bf3a0a210acb28797 | |
parent | 8adf60ff28640e71cb386a2389d0d6a52ba54903 (diff) | |
parent | 2478868db907eb7719bbb4dc0d861fa97c3617e4 (diff) |
Merge pull request #9099 from CGretski/feature_ostiary
ostiary: Initial package creation
-rw-r--r-- | net/ostiary/Makefile | 47 | ||||
-rwxr-xr-x | net/ostiary/files/ostiaryd.init | 19 |
2 files changed, 66 insertions, 0 deletions
diff --git a/net/ostiary/Makefile b/net/ostiary/Makefile new file mode 100644 index 000000000..b7829fa2a --- /dev/null +++ b/net/ostiary/Makefile @@ -0,0 +1,47 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=ostiary +PKG_VERSION:=4.0 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://ingles.homeunix.net/software/ost/latest/ +PKG_HASH:=1b6a0a8a17fd3aa0f6511cdda81558d54f11023a0c953201ddaaef35f56a82c4 + +PKG_MAINTAINER:=Chris Geraghty <cgretski@hotmail.com> +PKG_LICENSE:=GPL-2.0-only +PKG_LICENSE_FILES:=COPYING + +PKG_BUILD_PARALLEL:=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/ostiary + SECTION:=base + CATEGORY:=Network + TITLE:=Secure remote execution utility + URL:=http://ingles.homeunix.net/software/ost/index.html +endef + +define Package/ostiary/description + Replay-resistent predefined remote-command trigger +endef + +define Package/ostiary/conffiles +/etc/ostiary.cfg +endef + +MAKE_FLAGS += all + +define Package/ostiary/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/ostiaryd $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/ostclient $(1)/usr/bin/ + $(INSTALL_DIR) $(1)/etc + $(INSTALL_CONF) $(PKG_BUILD_DIR)/tests/ostiary.cfg $(1)/etc/ostiary.cfg + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) ./files/ostiaryd.init $(1)/etc/init.d/ostiary +endef + + +$(eval $(call BuildPackage,ostiary)) diff --git a/net/ostiary/files/ostiaryd.init b/net/ostiary/files/ostiaryd.init new file mode 100755 index 000000000..da79a4522 --- /dev/null +++ b/net/ostiary/files/ostiaryd.init @@ -0,0 +1,19 @@ +#!/bin/sh /etc/rc.common + +START=99 +STOP=85 + +USE_PROCD=1 + +start_service() +{ + + procd_open_instance + procd_set_param command /usr/bin/ostiaryd -c /etc/ostiary.cfg + procd_close_instance +} + + +reload_service() { + procd_send_signal ostiaryd +} |