summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4bf2745)
raw | patch | inline | side by side (parent: 4bf2745)
author | Holger Weiss <holger@zedat.fu-berlin.de> | |
Sun, 11 Apr 2010 07:39:24 +0000 (09:39 +0200) | ||
committer | Holger Weiss <holger@zedat.fu-berlin.de> | |
Sun, 11 Apr 2010 07:39:24 +0000 (09:39 +0200) |
| The check_disk_smb plugin purports to support guest users, but it
| doesn't work out, because it doesn't specify the -N command line
| option to smbclient when no password is specified, making smbclient
| stop and ask.
[ http://bugs.debian.org/425129 ]
(Fixed by Josip Rodin, forwarded by Jan Wagner.)
| doesn't work out, because it doesn't specify the -N command line
| option to smbclient when no password is specified, making smbclient
| stop and ask.
[ http://bugs.debian.org/425129 ]
(Fixed by Josip Rodin, forwarded by Jan Wagner.)
NEWS | patch | blob | history | |
THANKS.in | patch | blob | history | |
plugins-scripts/check_disk_smb.pl | patch | blob | history |
index 0d05019eea535bffdf273bbc5d6d54519988d159..5827db694941ab46b9cb2d7414751dc0b5850016 100644 (file)
--- a/NEWS
+++ b/NEWS
Fix compilation with GCC 2.96 (Konstantin Khomoutov - #2977105)
Fix regression introduced in #1867716 where partially valid performance strings would not be printed anymore
Fix regression in check_http ssl checks on some servers - make SNI an option
+ Fix guest mode support in check_disk_smb
WARNINGS
Updated developer documentation to say that performance labels should not have an equals sign or
single quote in the label
diff --git a/THANKS.in b/THANKS.in
index 16036222db4383f9506a5c018f86af62e790e395..ee75f33a006fd88475ebfae091a5e4e65458c111 100644 (file)
--- a/THANKS.in
+++ b/THANKS.in
Bryan Irvine
Jimmy Bergman
Konstantin Khomoutov
+Josip Rodin
index 985fa961ddd8b2a5b2fe93c2509b17242119c5ef..022fa505ceabe4913e102e6cd1b6696dbdd322a5 100755 (executable)
($opt_p) || ($opt_p = shift) || ($opt_p = "");
my $pass = $1 if ($opt_p =~ /(.*)/);
+$pass = "-N" if ($opt_p eq "");
($opt_w) || ($opt_w = shift) || ($opt_w = 85);
my $warn = $1 if ($opt_w =~ /^([0-9]{1,2}\%?|100\%?|[0-9]+[kMG])$/);