[Nagiosplug-checkins] CVS: nagiosplug/plugins-scripts check_disk_smb.pl,1.8,1.8.2.1
Ton Voon
tonvoon at users.sourceforge.net
Wed Jul 2 08:53:06 CEST 2003
- Previous message: [Nagiosplug-checkins] CVS: nagiosplug/plugins-scripts check_file_age.pl,NONE,1.1 .cvsignore,1.2,1.3 Makefile.am,1.5,1.6 subst.in,1.4,1.5
- Next message: [Nagiosplug-checkins] CVS: nagiosplug/plugins-scripts check_disk_smb.pl,1.8,1.9
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/nagiosplug/nagiosplug/plugins-scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv13808
Modified Files:
Tag: r1_3_0
check_disk_smb.pl
Log Message:
Update error message from smbclient v2.2.7 (Patch 740132 - Cove Schneider)
Index: check_disk_smb.pl
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins-scripts/check_disk_smb.pl,v
retrieving revision 1.8
retrieving revision 1.8.2.1
diff -C2 -r1.8 -r1.8.2.1
*** check_disk_smb.pl 20 Feb 2003 03:16:26 -0000 1.8
--- check_disk_smb.pl 2 Jul 2003 15:52:23 -0000 1.8.2.1
***************
*** 206,221 ****
$state = "UNKNOWN";
foreach (@lines) {
! if (/Access denied/) {
$answer = "Access Denied\n";
$state = "CRITICAL";
last;
}
! if (/(Unknown host \w*)/) {
! $answer = "$1\n";_
!
$state = "CRITICAL";
last;
}
! if (/(You specified an invalid share name)/) {
$answer = "Invalid share name \\\\$host\\$share\n";
$state = "CRITICAL";
--- 206,220 ----
$state = "UNKNOWN";
foreach (@lines) {
! if (/(Access denied|NT_STATUS_LOGON_FAILURE)/) {
$answer = "Access Denied\n";
$state = "CRITICAL";
last;
}
! if (/(Unknown host \w*|Connection.*failed)/) {
! $answer = "$1\n";
$state = "CRITICAL";
last;
}
! if (/(You specified an invalid share name|NT_STATUS_BAD_NETWORK_NAME)/) {
$answer = "Invalid share name \\\\$host\\$share\n";
$state = "CRITICAL";
- Previous message: [Nagiosplug-checkins] CVS: nagiosplug/plugins-scripts check_file_age.pl,NONE,1.1 .cvsignore,1.2,1.3 Makefile.am,1.5,1.6 subst.in,1.4,1.5
- Next message: [Nagiosplug-checkins] CVS: nagiosplug/plugins-scripts check_disk_smb.pl,1.8,1.9
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Commits
mailing list