4
Fork 0

Finally to production

This commit is contained in:
R3ABM Artem 2016-08-04 11:52:45 +04:00
parent 3d79575f03
commit ec037a2e00
5 changed files with 38 additions and 25 deletions

View file

@ -28,20 +28,6 @@ define Build/Prepare
$(CP) -R $(X_SOURCE_DIR)/* $(PKG_BUILD_DIR)/
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
$(INSTALL_DIR) $(1)/opt/CronosAgent
$(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/
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))

View file

@ -10,5 +10,4 @@ function restartCronosAgent()
luci.sys.init.stop("cronosagent")
luci.sys.init.start("cronosagent")
luci.http.write("Done!")
-- luci.http.redirect("/")
end

View file

@ -10,3 +10,7 @@ start() {
stop() {
killall cronosagent
}
reload() {
restart
}

View file

@ -1,4 +1,9 @@
local function handleAferCommit()
luci.sys.init.stop("cronosagent")
luci.sys.init.start("cronosagent")
end
local map = Map("cronosagent", "CronosAgent")
local section = map:section(TypedSection, "cronosagent", "Configuration")
@ -14,4 +19,6 @@ server.datatype = "host"
password.datatype = "string"
password.password = true
map.on_after_commit = handleAferCommit
return map

View file

@ -1 +1 @@
#define VERSION 20160731
#define VERSION 20160804