Major changes:
* support for influxdb
* AnotherDNS update
* new matcher ConsecutiveLoss
* lots of spelling fixes
* update FPing commandline
* better handling of return codes from probe binaries
* drop SSHv1 and rsa1 from SSH.pm
* fix config reload for slaves
* fix edgetrigger functionality
* fping protocol parameter optional
* exploss matcher fixes
* interface parameter for fping probe
* pass 6th argument to edgetrigger external alerts
* red background for 100% loss
* make loss colors more distinctive
* calculate loss buckets based on number of 'pings'
Full changelog: calculate loss buckets based on number of 'pings'
Integrate upstream patch[1] to fix mail loop issue #183[2].
This is a one-line patch without complexity who can be removed
as soon as the upstream releases a new version.
[1] e9004e8bbe
[2] https://github.com/oetiker/SmokePing/issues/183
PR: 253161
Submitted by: OlivierW <olivierw1+bugzilla-freebsd@hotmail.com>
daemon to stops. With smokeping busy pinging a few hundred hosts it often occurs
that the daemon stops after the rc call completion failing a restart.
Bump PORTREVISION.
PR: 221009
Submitted by: vegeta@tuxpowered.net
Several ports had rc.d scripts with hardcoded command_interpreter string
as /usr/bin/perl. This symlink is not guaranteed to be in place, and it
isn't even an option for perl 5.20. For affected ports, the interpreter
was changed to localbase.
In one case, the interpreter was correct, but it wasn't surround by
quotes. Since the rc.d script would break if a space was contained in
${PREFIX}, quotes were added in that case.
literal name_enable wherever possible, and ${name}_enable
when it's not, to prepare for the demise of set_rcvar().
In cases where I had to hand-edit unusual instances also
modify formatting slightly to be more uniform (and in
some cases, correct). This includes adding some $FreeBSD$
tags, and most importantly moving rcvar= to right after
name= so it's clear that one is derived from the other.
pkg-deinstall only needs to handle the removal of the .pid file
use @stopdaemon to stop smoking instead of invoking smokeping stop manually by pkg-deinstall
use bsd.port.options.mk
use SUB_FILES to update pkg-message
PR: ports/143182
Submitted by: Sevan Janiyan <venture37@geeklan.co.uk>
propogated by copy and paste.
1. Primarily the "empty variable" default assignment, which is mostly
${name}_flags="", but fix a few others as well.
2. Where they are not already documented, add the existence of the _flags
(or other deleted empties) option to the comments, and in some cases add
comments from scratch.
3. Replace things that look like:
prefix=%%PREFIX%%
command=${prefix}/sbin/foo
to just use %%PREFIX%%. In many cases the $prefix variable is only used
once, and in some cases it is not used at all.
4. In a few cases remove ${name}_flags from command_args
5. Remove a long-stale comment about putting the port's rc.d script in
/etc/rc.d (which is no longer necessary).
No PORTREVISION bumps because all of these changes are noops.
From CHANGES:
* added strict to both wrappers and fixed some followup errors -- tobi
* kill taint error in Smokeping.pm -- tobi
* better master/slave secrets documentation -- tobi
* do not load :sys_wait_h from POSIX perl module since this seems to
be missing in some linux distros and we can do alright without.
- Use OPTIONS for optional dependencies
- Change pkg-{,de}install to avoid risk of data loss when upgrading
- Patch files instead of regexps in Makefile
added a work around for PR 63293
PR: 63230
Submitted by: Lars Thegler <lars@thegler.dk> (maintainer)
Reviewed by: clement
This port is heavily modified by kuriyama:
o Use BSD'ish directory hierarchy (imcomplete)
TODO for this port (will be done by kuriyama)
o Upgrade to 1.6 (see follow-up of this PR)
o Use non-privileged UID for smokeping
o Move *.pm to $PREFIX/lib/perl5/site_perl
PR: ports/36006
Submitted by: Lars Thegler <lars@thegler.dk>