Skip to content

Commit

Permalink
add homepage and bugs url to blurb
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Feb 29, 2016
1 parent 2110fea commit cd17820
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions bin/check_raid.pl
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,22 @@

my $PROGNAME = 'check_raid';
my $VERSION = q/4.0.2/;
my $URL = 'https://github.com/glensc/nagios-plugin-check_raid';
my $BUGS_URL = 'https://github.com/glensc/nagios-plugin-check_raid#reporting-bugs';

my $mp = Monitoring::Plugin->new(
usage =>
"Usage: %s [-h] [-V] [-S] [list of devices to ignore]",

version => $VERSION,
blurb => 'This plugin checks all RAID volumes (hardware and software) that can be identified.',

plugin => $PROGNAME,
shortname => $PROGNAME,
usage =>
"Usage: %s [-h] [-V] [-S] [list of devices to ignore]",

version => $VERSION,
blurb =>
"This plugin checks all RAID volumes (hardware and software) that can be identified\n".
"Homepage: $URL\n".
"Reporting Bugs: $BUGS_URL\n".
"",

plugin => $PROGNAME,
shortname => $PROGNAME,
);

$mp->add_arg(
Expand Down

0 comments on commit cd17820

Please sign in to comment.