From 866b7ed470715f1cac20cf187245c13ad954e1d1 Mon Sep 17 00:00:00 2001 From: Artem Prilutskiy Date: Fri, 5 Aug 2016 20:14:33 +0300 Subject: [PATCH] Added stuff to OpenWRT --- OpenWRT/Makefile | 3 +++ OpenWRT/crontabs/cronosagent | 1 + OpenWRT/model/cbi/cronosagent/configure.lua | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 OpenWRT/crontabs/cronosagent diff --git a/OpenWRT/Makefile b/OpenWRT/Makefile index 366224a..56c8b0f 100644 --- a/OpenWRT/Makefile +++ b/OpenWRT/Makefile @@ -38,6 +38,7 @@ define Package/cronosagent/install $(INSTALL_BIN) $(X_SOURCE_DIR)/cronosagent.sh $(1)/opt/CronosAgent/ $(INSTALL_BIN) $(X_SOURCE_DIR)/OpenWRT/init.d/cronosagent $(1)/etc/init.d/ $(INSTALL_DATA) $(X_SOURCE_DIR)/OpenWRT/config/cronosagent $(1)/etc/config/ + $(INSTALL_DATA) $(X_SOURCE_DIR)/OpenWRT/crontabs/cronosagent $(1)/etc/crontabs/ $(INSTALL_DATA) $(X_SOURCE_DIR)/OpenWRT/controller/cronosagent.lua $(1)/usr/lib/lua/luci/controller/ $(INSTALL_DATA) $(X_SOURCE_DIR)/OpenWRT/model/cbi/cronosagent/configure.lua $(1)/usr/lib/lua/luci/model/cbi/cronosagent/ endef @@ -50,6 +51,8 @@ define Package/cronosagent/postinst #!/bin/sh /etc/init.d/cronosagent enable /etc/init.d/cronosagent start +/etc/init.d/cron enable +/etc/init.d/cron start exit 0 endef diff --git a/OpenWRT/crontabs/cronosagent b/OpenWRT/crontabs/cronosagent new file mode 100644 index 0000000..a045fe9 --- /dev/null +++ b/OpenWRT/crontabs/cronosagent @@ -0,0 +1 @@ +*/10 * * * * test -n "$(ls /etc/rc.d/S??cronosagent)" -a -z "$(pidof cronosagent)" && /etc/init.d/cronosagent start diff --git a/OpenWRT/model/cbi/cronosagent/configure.lua b/OpenWRT/model/cbi/cronosagent/configure.lua index 91e5c93..c7dc24a 100644 --- a/OpenWRT/model/cbi/cronosagent/configure.lua +++ b/OpenWRT/model/cbi/cronosagent/configure.lua @@ -3,7 +3,7 @@ local map = Map("cronosagent", "CronosAgent") local section = map:section(TypedSection, "cronosagent", "Configuration") local number = section:option(Value, "number", "Repeater ID", "DMR ID assigned to your repeater" ) -local repeater = section:option(Value, "repeaterAddress", "Repeater Address", "Address of your KAIROS repeater" ) +local repeater = section:option(Value, "repeaterAddress", "Repeater address", "Address of your KAIROS repeater" ) local server = section:option(Value, "serverAddress", "Server address", "Address of BrandMeister DMR Server") local password = section:option(Value, "serverPassword", "Password", "Password to login to the server" )