diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | plugins-scripts/check_disk_smb.pl | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -3,6 +3,7 @@ This file documents the major additions and syntax changes between releases. | |||
3 | ... | 3 | ... |
4 | ENHANCEMENTS | 4 | ENHANCEMENTS |
5 | check_nt UPTIME accepts warning/critical thresholds (Ryan Kelly) | 5 | check_nt UPTIME accepts warning/critical thresholds (Ryan Kelly) |
6 | check_disk_smb now allows spaces in share names (#990948, #1370031, Debian #601699) | ||
6 | 7 | ||
7 | FIXES | 8 | FIXES |
8 | check_snmp now attempts to convert string responses into a double value. If the full string is a value, | 9 | check_snmp now attempts to convert string responses into a double value. If the full string is a value, |
diff --git a/plugins-scripts/check_disk_smb.pl b/plugins-scripts/check_disk_smb.pl index 7c81fc2..4698700 100755 --- a/plugins-scripts/check_disk_smb.pl +++ b/plugins-scripts/check_disk_smb.pl | |||
@@ -67,7 +67,7 @@ my $host = $1 if ($opt_H =~ /^([-_.A-Za-z0-9 ]+\$?)$/); | |||
67 | ($host) || usage("Invalid host: $opt_H\n"); | 67 | ($host) || usage("Invalid host: $opt_H\n"); |
68 | 68 | ||
69 | ($opt_s) || ($opt_s = shift @ARGV) || usage("Share volume not specified\n"); | 69 | ($opt_s) || ($opt_s = shift @ARGV) || usage("Share volume not specified\n"); |
70 | my $share = $1 if ($opt_s =~ /^([-_.A-Za-z0-9]+\$?)$/); | 70 | my $share = $1 if ($opt_s =~ /^([-_.A-Za-z0-9 ]+\$?)$/); |
71 | ($share) || usage("Invalid share: $opt_s\n"); | 71 | ($share) || usage("Invalid share: $opt_s\n"); |
72 | 72 | ||
73 | defined($opt_u) || ($opt_u = shift @ARGV) || ($opt_u = "guest"); | 73 | defined($opt_u) || ($opt_u = shift @ARGV) || ($opt_u = "guest"); |