Code

Fix Debian bug #479984: Allow empty LDAP base
[nagiosplug.git] / plugins / check_cluster.c
index ac3eeceb0eebce9b891af4e8ae218aaaee7e8971..89b1a0e1ca338305cdcaac5ec4d44ce6ca226bf6 100644 (file)
@@ -6,9 +6,6 @@
 * Copyright (c) 2000-2004 Ethan Galstad (nagios@nagios.org)
 * Copyright (c) 2007 Nagios Plugins Development Team
 * 
-* Last Modified: $Date$
-* 
-* 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 * 
-* $Id$
 * 
 *****************************************************************************/
 
 const char *progname = "check_cluster";
-const char *revision = "$Revision$";
 const char *copyright = "2000-2007";
 const char *email = "nagiosplug-devel@lists.sourceforge.net";
 
@@ -74,6 +69,9 @@ int main(int argc, char **argv){
        bindtextdomain (PACKAGE, LOCALEDIR);
        textdomain (PACKAGE);
 
+       /* Parse extra opts if any */
+       argv=np_extra_opts(&argc, argv, progname);
+
        if(process_arguments(argc,argv)==ERROR)
                usage(_("Could not parse arguments"));
 
@@ -121,7 +119,7 @@ int main(int argc, char **argv){
                        }
                }
         }
-       
+
 
        /* return the status of the cluster */
        if(check_type==CHECK_SERVICES){
@@ -146,7 +144,7 @@ int main(int argc, char **argv){
 int process_arguments(int argc, char **argv){
        int c;
        int option=0;
-       static struct option longopts[]={ 
+       static struct option longopts[]={
                {"data",     required_argument,0,'d'},
                {"warning",  required_argument,0,'w'},
                {"critical", required_argument,0,'c'},
@@ -201,7 +199,7 @@ int process_arguments(int argc, char **argv){
                        break;
 
                case 'V': /* version */
-                       print_revision (progname, revision);
+                       print_revision (progname, NP_VERSION);
                        exit (STATE_OK);
                        break;
 
@@ -225,7 +223,7 @@ int process_arguments(int argc, char **argv){
 void
 print_help(void)
 {
-       print_revision(progname, revision);
+       print_revision(progname, NP_VERSION);
        printf ("Copyright (c) 2000-2004 Ethan Galstad (nagios@nagios.org)\n");
        printf(COPYRIGHT, copyright, email);
 
@@ -236,6 +234,7 @@ print_help(void)
 
        printf("\n");
        printf("%s\n", _("Options:"));
+       printf(_(UT_EXTRA_OPTS));
        printf (" %s\n", "-s, --service");
        printf ("    %s\n", _("Check service cluster status"));
        printf (" %s\n", "-h, --host");
@@ -257,6 +256,15 @@ print_help(void)
        printf("\n");
        printf("%s\n", _("Notes:"));
        printf(_(UT_THRESHOLDS_NOTES));
+#ifdef NP_EXTRA_OPTS
+       printf ("\n");
+       printf (_(UT_EXTRA_OPTS_NOTES));
+#endif
+
+       printf ("\n");
+       printf ("%s\n", _("Examples:"));
+       printf (" %s\n", "check_cluster -s -d 2,0,2,0 -c @3:");
+       printf ("    %s\n", _("Will alert critical if there are 3 or more service data points in a non-OK state") );
 
        printf(_(UT_SUPPORT));
 }