aboutsummaryrefslogtreecommitdiff
path: root/net/pingcheck
Commit message (Collapse)AuthorAge
* treewide: refresh hashes after move to use ZSTD as defaultRobert Marko2024-04-07
| | | | | | | | With the recent move to using ZSTD as the default compression format for packaging git repo clones we must refresh all of the hashes for the packages feed as well. Signed-off-by: Robert Marko <robimarko@gmail.com>
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* pingcheck: update to 2022-03-01Rosen Penev2022-04-02
| | | | | | Fixes compilation with kernel 5.15. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* pingcheck: Update (resolve bugfix)Bruno Randolf2021-02-23
| | | | Signed-off-by: Bruno Randolf <br1@einfach.org>
* pingcheck: Remove unnecessary PKG_SOURCE and _SUBDIRBruno Randolf2021-02-17
| | | | | | Adressing issue #14773 Signed-off-by: Bruno Randolf <br1@einfach.org>
* pingcheck: Update and add script directoriesBruno Randolf2020-02-12
| | | | | | | | | - Update to version with longer interface names. - Add /etc/pingcheck/(on|off)line.d/ directories with an example script. Closes #11263 Signed-off-by: Bruno Randolf <br1@einfach.org>
* pingcheck: Fix spelling in descriptionGreg Dietsche2020-02-09
| | | | | | Correct: wether => whether Signed-off-by: Greg Dietsche <gregory.dietsche@cuw.edu>
* pingcheck: Update to latest versionBruno Randolf2019-12-17
| | | | Signed-off-by: Bruno Randolf <br1@einfach.org>
* treewide: Change .*GPL.*+ licenses to SPDX compatible identifierSven Eckelmann2019-09-10
| | | | | | | | The CONTRIBUTING.md requests an (or multiple) SPDX identifier for GPL licenses. But a lot of packages did use a different, non-SPDX style with a "+" at the end instead of "-or-later". Signed-off-by: Sven Eckelmann <sven@narfation.org>
* treewide: fix missing/wrong MIRROR_HASH for sources from githubYousong Zhou2018-07-02
| | | | | | | | | Some of them forgot to update MIRROR_HASH on version change, others updated with wrong hash value. The new values were generated from tarballs prepared by the newly introduced github-tarball download methoded and confirmed consistent with those from sources.openwrt.org Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* pingcheck: Update to latest versionBruno Randolf2018-03-03
| | | | Signed-off-by: Bruno Randolf <br1@einfach.org>
* treewide: run "make check FIXUP=1"Etienne Champetier2017-08-29
| | | | | | | | | | fix Makefile chmod (644) replace MD5SUM with HASH add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git (PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now) Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* pingcheck: Add new packageBruno Randolf2015-11-19
Pingcheck is a daemon for OpenWRT which checks the online status of individual network interfaces and makes this information available via UBUS and by triggering "online" and "offline" scripts. It is maintained at: https://github.com/br101/pingcheck Signed-off-by: Bruno Randolf <br1@einfach.org>