Subversion Repositories camp_sysinfo_client_3

Rev

Rev 175 | Rev 191 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 175 Rev 185
Line 180... Line 180...
180
# Version 3.4.1 20191117 RWR
180
# Version 3.4.1 20191117 RWR
181
# Added syslog as a possible option for logging.
181
# Added syslog as a possible option for logging.
182
#
182
#
183
# Version 3.5.4 20200317 RWR
183
# Version 3.5.4 20200317 RWR
184
# changed so report->version will show the version of sysinfo, not the data version
184
# changed so report->version will show the version of sysinfo, not the data version
-
 
185
#
-
 
186
# Version 3.5.5 20200317 RWR
-
 
187
# bug fix for bsd/opnsense
185
   
188
   
186
# find our location and use it for searching for libraries
189
# find our location and use it for searching for libraries
187
BEGIN {
190
BEGIN {
188
   use FindBin;
191
   use FindBin;
189
   use File::Spec;
192
   use File::Spec;
Line 196... Line 199...
196
my $sourceDir = File::Spec->catdir($FindBin::Bin);
199
my $sourceDir = File::Spec->catdir($FindBin::Bin);
197
 
200
 
198
# define the version number
201
# define the version number
199
# see https://metacpan.org/pod/release/JPEACOCK/version-0.97/lib/version.pod
202
# see https://metacpan.org/pod/release/JPEACOCK/version-0.97/lib/version.pod
200
use version;
203
use version;
201
our $VERSION = version->declare("v3.5.4");
204
our $VERSION = version->declare("v3.5.5");
202
our $DATA_VERSION = version->declare( 'v3.0.0' ); # used in sending the data file. sets version of XML/YAML data file
205
our $DATA_VERSION = version->declare( 'v3.0.0' ); # used in sending the data file. sets version of XML/YAML data file
203
 
206
 
204
# see https://perldoc.perl.org/Getopt/Long.html
207
# see https://perldoc.perl.org/Getopt/Long.html
205
use Getopt::Long;
208
use Getopt::Long;
206
# allow -vvn (ie, --verbose --verbose --dryrun)
209
# allow -vvn (ie, --verbose --verbose --dryrun)