aboutsummaryrefslogtreecommitdiff
path: root/net/darkstat
Commit message (Collapse)AuthorAge
* treewide: Run refresh on all packagesIlya Lipnitskiy2021-02-20
| | | | | | | | | The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
* darkstat: bump package versionSimon Day2020-12-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Developer's Certificate of Origin 1.1 By making a contribution to this project, I certify that: (a) The contribution was created in whole or in part by me and I have the right to submit it under the open source license indicated in the file; or (b) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate open source license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same open source license (unless I am permitted to submit under a different license), as indicated in the file; or (c) The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it. (d) I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the open source license(s) involved Signed-off-by: Simon Day <email@simonday.info>
* darkstat: Add support to darkstat to allow multiple local networks to beSimon Day2020-12-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | specified for montioring eg allows ipv4 and ipv6 forwarded traffic to be monitored from both main network and dmz in single graph Developer's Certificate of Origin 1.1 By making a contribution to this project, I certify that: (a) The contribution was created in whole or in part by me and I have the right to submit it under the open source license indicated in the file; or (b) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate open source license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same open source license (unless I am permitted to submit under a different license), as indicated in the file; or (c) The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it. (d) I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the open source license(s) involved Signed-off-by: Simon Day <email@simonday.info>
* darkstat: Add support to darkstat to allow multiple local networks to beSimon Day2020-12-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | specified for montioring eg allows ipv4 and ipv6 forwarded traffic to be monitored from both main network and dmz in single graph Developer's Certificate of Origin 1.1 By making a contribution to this project, I certify that: (a) The contribution was created in whole or in part by me and I have the right to submit it under the open source license indicated in the file; or (b) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate open source license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same open source license (unless I am permitted to submit under a different license), as indicated in the file; or (c) The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it. (d) I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the open source license(s) involved Signed-off-by: Simon Day <email@simonday.info>
* darkstat: correct incompatbility with sshdJean-Michel Lacroix2020-07-01
| | | | | | | | | | | | | | | The init file of darkstat is creating the pid in /var/empty and setting the owner of the directory to darkstat which is incompatible with sshd as sshd requires /var/empty to be owned by root and not group or world-writable. See issue #12420. This corrects the problem by creating another directory: /var/darkstat instead without setting the owner, which is not actually required. Compile tested: not applicable as the changes do not involve compilation. Tested on my home router running darkstat. Signed-off-by: Jean-Michel Lacroix <lacroix@lepine-lacroix.info>
* darkstat: correction of a variable in the init scriptJean-Michel Lacroix2018-11-26
| | | | | | | | This is to correct the variable name CONFIGSTR in the export_bool sub-routine: the variable in line 26 was written CONFIGSTRING instead of CONFIGSTR. Signed-off-by: Jean-Michel Lacroix <lacroix@lepine-lacroix.info>
* darkstat: procd init script and enabling additional parametersJean-Michel Lacroix2018-11-16
| | | | | | | | | | | | | | | This is to change the init script to a procd init script This also enable some additional parameters in the binary that were present but not enabled: The export file (option export_file) The import file (option import_file) The daylog (option daylog_file) These are disabled by default. Also, the option to run as a daemon is removed, as not compatible with procd. There is no change in the binary. Signed-off-by: Jean-Michel Lacroix <lacroix@lepine-lacroix.info>
* darkstat: Remove libbsd dependencyRosen Penev2018-10-15
| | | | | | | | | | | darkstat includes its own strlcat and strlcpy, making the dependency somewhat pointless. Fixes compilation ever since glibc dependency on libbsd was removed. Also removed std=gnu99 as it's not needed with GCC7. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* 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>
* darkstat: Depend on libbsd for glibc-based toolchainsFlorian Fainelli2017-04-12
| | | | | | | darkstat's configure script searches for libbsd for different routines, so if it manages to pick it up, make sure the dependency is reflected. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
* darkstat: Network bandwidth monitor - version 3.0.719Jean-Michel Lacroix2016-07-11
Signed-off-by: Jean-Michel Lacroix <lacroix@lepine-lacroix.info> From the oldpackages. Updated to version 3.0.719, new config file to add more options Rewritten init file to take in account the new config file and removing a bug when stopping the daemon. Corrected license information in Makefile Signed-off-by: Jean-Michel Lacroix <lacroix@lepine-lacroix.info>