Skip to content

Commit cd17820

Browse files
committed
add homepage and bugs url to blurb
1 parent 2110fea commit cd17820

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

bin/check_raid.pl

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,22 @@
99

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

1315
my $mp = Monitoring::Plugin->new(
14-
usage =>
15-
"Usage: %s [-h] [-V] [-S] [list of devices to ignore]",
16-
17-
version => $VERSION,
18-
blurb => 'This plugin checks all RAID volumes (hardware and software) that can be identified.',
19-
20-
plugin => $PROGNAME,
21-
shortname => $PROGNAME,
16+
usage =>
17+
"Usage: %s [-h] [-V] [-S] [list of devices to ignore]",
18+
19+
version => $VERSION,
20+
blurb =>
21+
"This plugin checks all RAID volumes (hardware and software) that can be identified\n".
22+
"Homepage: $URL\n".
23+
"Reporting Bugs: $BUGS_URL\n".
24+
"",
25+
26+
plugin => $PROGNAME,
27+
shortname => $PROGNAME,
2228
);
2329

2430
$mp->add_arg(

0 commit comments

Comments
 (0)