diff options
author | Tobi Oetiker <tobi@oetiker.ch> | 2006-07-10 01:00:49 +0200 |
---|---|---|
committer | Tobi Oetiker <tobi@oetiker.ch> | 2006-07-10 01:00:49 +0200 |
commit | 5baf73d8adfbbe6c505edc9a6cae2043a57114f1 (patch) | |
tree | 2380c6e0263e1c4cb5316cdfba3a9e8262954b14 | |
parent | 44e773cfd2038deb1989fa63cd6f29dfb8ede0ad (diff) | |
download | smokeping-5baf73d8adfbbe6c505edc9a6cae2043a57114f1.tar.gz smokeping-5baf73d8adfbbe6c505edc9a6cae2043a57114f1.tar.xz |
prepare for the release of smokeping-20060710_trunk
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | Makefile | 4 | ||||
-rwxr-xr-x | bin/smokeping.dist | 2 | ||||
-rwxr-xr-x | bin/tSmoke.dist | 2 | ||||
-rwxr-xr-x | htdocs/smokeping.cgi.dist | 2 | ||||
-rw-r--r-- | lib/Smokeping.pm | 2 |
6 files changed, 8 insertions, 6 deletions
@@ -1,3 +1,5 @@ +2006/7/10 -- released version 20060710_trunk + * AnotherDNS.pm: added option 'require_answers' for testing recursive DNS servers. -- niko * fix running an external program on edge-triggered alerts. @@ -1,11 +1,11 @@ SHELL = /bin/sh -VERSION = 20060709_trunk +VERSION = 20060710_trunk ############ A is for features ############ B is for bugfixes ############ V.AAABBB ############ 2.000001 ############ 2.000002 -NUMVERSION = 20060709 +NUMVERSION = 20060710 IGNORE = ~|CVS|var/|smokeping-$(VERSION)/smokeping-$(VERSION)|cvsignore|rej|orig|DEAD|pod2htm[di]\.tmp|.svn GROFF = groff .PHONY: man html txt ref examples check-examples patch killdoc doc tar rename-man symlinks remove-symlinks diff --git a/bin/smokeping.dist b/bin/smokeping.dist index 2c050b2..f71e8fc 100755 --- a/bin/smokeping.dist +++ b/bin/smokeping.dist @@ -4,7 +4,7 @@ use lib qw(/usr/pack/rrdtool-1.0.49-to/lib/perl); use lib qw(lib); -use Smokeping 20060709; +use Smokeping 20060710; Smokeping::main("etc/config.dist"); diff --git a/bin/tSmoke.dist b/bin/tSmoke.dist index 3005ebd..7ac71cf 100755 --- a/bin/tSmoke.dist +++ b/bin/tSmoke.dist @@ -53,7 +53,7 @@ use strict; use lib qw(lib); use lib "/usr/local/rrdtool-1.0.39/lib/perl"; -use Smokeping 20060709; +use Smokeping 20060710; use Net::SMTP; use Getopt::Long; use Pod::Usage; diff --git a/htdocs/smokeping.cgi.dist b/htdocs/smokeping.cgi.dist index 2e123e4..f04cdac 100755 --- a/htdocs/smokeping.cgi.dist +++ b/htdocs/smokeping.cgi.dist @@ -5,7 +5,7 @@ use lib qw(/usr/pack/rrdtool-1.0.33-to/lib/perl); use lib qw(/home/oetiker/data/projects/AADJ-smokeping/dist/lib); use CGI::Carp qw(fatalsToBrowser); -use Smokeping 20060709; +use Smokeping 20060710; Smokeping::cgi("/home/oetiker/data/projects/AADJ-smokeping/dist/etc/config"); diff --git a/lib/Smokeping.pm b/lib/Smokeping.pm index 557f506..68e69d5 100644 --- a/lib/Smokeping.pm +++ b/lib/Smokeping.pm @@ -28,7 +28,7 @@ use Smokeping::RRDtools; # globale persistent variables for speedy use vars qw($cfg $probes $VERSION $havegetaddrinfo $cgimode); -$VERSION="20060709"; +$VERSION="20060710"; # we want opts everywhere my %opt; |