Finally to production
This commit is contained in:
parent
3d79575f03
commit
ec037a2e00
5 changed files with 38 additions and 25 deletions
|
@ -28,20 +28,6 @@ define Build/Prepare
|
||||||
$(CP) -R $(X_SOURCE_DIR)/* $(PKG_BUILD_DIR)/
|
$(CP) -R $(X_SOURCE_DIR)/* $(PKG_BUILD_DIR)/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/cronosagent/conffiles
|
|
||||||
/etc/config/cronosagent
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/cronosagent/postinst
|
|
||||||
#!/bin/sh
|
|
||||||
/etc/init.d/cronosagent enable
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/cronosagent/prerm
|
|
||||||
#!/bin/sh
|
|
||||||
/etc/init.d/cronosagent disable
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/cronosagent/install
|
define Package/cronosagent/install
|
||||||
$(INSTALL_DIR) $(1)/opt/CronosAgent
|
$(INSTALL_DIR) $(1)/opt/CronosAgent
|
||||||
$(INSTALL_DIR) $(1)/etc/init.d
|
$(INSTALL_DIR) $(1)/etc/init.d
|
||||||
|
@ -56,4 +42,21 @@ define Package/cronosagent/install
|
||||||
$(INSTALL_DATA) $(X_SOURCE_DIR)/OpenWRT/model/cbi/cronosagent/configure.lua $(1)/usr/lib/lua/luci/model/cbi/cronosagent/
|
$(INSTALL_DATA) $(X_SOURCE_DIR)/OpenWRT/model/cbi/cronosagent/configure.lua $(1)/usr/lib/lua/luci/model/cbi/cronosagent/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/cronosagent/conffiles
|
||||||
|
/etc/config/cronosagent
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/cronosagent/postinst
|
||||||
|
#!/bin/sh
|
||||||
|
/etc/init.d/cronosagent enable
|
||||||
|
exit 0
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/cronosagent/prerm
|
||||||
|
#!/bin/sh
|
||||||
|
/etc/init.d/cronosagent stop
|
||||||
|
/etc/init.d/cronosagent disable
|
||||||
|
exit 0
|
||||||
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,cronosagent))
|
$(eval $(call BuildPackage,cronosagent))
|
||||||
|
|
|
@ -10,5 +10,4 @@ function restartCronosAgent()
|
||||||
luci.sys.init.stop("cronosagent")
|
luci.sys.init.stop("cronosagent")
|
||||||
luci.sys.init.start("cronosagent")
|
luci.sys.init.start("cronosagent")
|
||||||
luci.http.write("Done!")
|
luci.http.write("Done!")
|
||||||
-- luci.http.redirect("/")
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -10,3 +10,7 @@ start() {
|
||||||
stop() {
|
stop() {
|
||||||
killall cronosagent
|
killall cronosagent
|
||||||
}
|
}
|
||||||
|
|
||||||
|
reload() {
|
||||||
|
restart
|
||||||
|
}
|
|
@ -1,4 +1,9 @@
|
||||||
|
|
||||||
|
local function handleAferCommit()
|
||||||
|
luci.sys.init.stop("cronosagent")
|
||||||
|
luci.sys.init.start("cronosagent")
|
||||||
|
end
|
||||||
|
|
||||||
local map = Map("cronosagent", "CronosAgent")
|
local map = Map("cronosagent", "CronosAgent")
|
||||||
local section = map:section(TypedSection, "cronosagent", "Configuration")
|
local section = map:section(TypedSection, "cronosagent", "Configuration")
|
||||||
|
|
||||||
|
@ -14,4 +19,6 @@ server.datatype = "host"
|
||||||
password.datatype = "string"
|
password.datatype = "string"
|
||||||
password.password = true
|
password.password = true
|
||||||
|
|
||||||
|
map.on_after_commit = handleAferCommit
|
||||||
|
|
||||||
return map
|
return map
|
|
@ -1 +1 @@
|
||||||
#define VERSION 20160731
|
#define VERSION 20160804
|
||||||
|
|
Loading…
Add table
Reference in a new issue