diff --git a/Makefile b/Makefile index f6a1b2b..cb924ba 100644 --- a/Makefile +++ b/Makefile @@ -78,4 +78,7 @@ else dpkg-buildpackage -b -tc endif +macos-archive: build + zip ../CronosAgent-macOS.zip cronosagent cronosagent.sh cronosagent.conf cronosagent.plist + .PHONY: all build clean install diff --git a/OpenWRT/Makefile b/OpenWRT/Makefile index 7172809..b62948d 100644 --- a/OpenWRT/Makefile +++ b/OpenWRT/Makefile @@ -32,14 +32,12 @@ define Package/cronosagent/install $(INSTALL_DIR) $(1)/opt/CronosAgent $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_DIR) $(1)/etc/config - $(INSTALL_DIR) $(1)/etc/crontabs $(INSTALL_DIR) $(1)/usr/lib/lua/luci/controller $(INSTALL_DIR) $(1)/usr/lib/lua/luci/model/cbi/cronosagent $(INSTALL_BIN) $(PKG_BUILD_DIR)/cronosagent $(1)/opt/CronosAgent/ $(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 @@ -52,6 +50,15 @@ define Package/cronosagent/postinst #!/bin/sh /etc/init.d/cronosagent enable /etc/init.d/cronosagent start + +grep cronosagent /etc/crontabs/root > /dev/null +if [ "$?" -eq "1" ] +then +cat << EOF >> /etc/crontabs/root +*/10 * * * * test -n "$(ls /etc/rc.d/S??cronosagent)" -a -z "$(pidof cronosagent)" && /etc/init.d/cronosagent start +EOF +fi + /etc/init.d/cron enable /etc/init.d/cron start exit 0 diff --git a/OpenWRT/crontabs/cronosagent b/OpenWRT/crontabs/cronosagent deleted file mode 100644 index a045fe9..0000000 --- a/OpenWRT/crontabs/cronosagent +++ /dev/null @@ -1 +0,0 @@ -*/10 * * * * test -n "$(ls /etc/rc.d/S??cronosagent)" -a -z "$(pidof cronosagent)" && /etc/init.d/cronosagent start