diff options
Diffstat (limited to 'plugins/check_pgsql.c')
-rw-r--r-- | plugins/check_pgsql.c | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index f9d6611..de76735 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c | |||
@@ -18,6 +18,17 @@ | |||
18 | 18 | ||
19 | *****************************************************************************/ | 19 | *****************************************************************************/ |
20 | 20 | ||
21 | const char *progname = "check_pgsql"; | ||
22 | const char *revision = "$Revision$"; | ||
23 | const char *copyright = "1999-2004"; | ||
24 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; | ||
25 | |||
26 | #include "common.h" | ||
27 | #include "utils.h" | ||
28 | |||
29 | #include "netutils.h" | ||
30 | #include <libpq-fe.h> | ||
31 | |||
21 | #define DEFAULT_DB "template1" | 32 | #define DEFAULT_DB "template1" |
22 | #define DEFAULT_HOST "127.0.0.1" | 33 | #define DEFAULT_HOST "127.0.0.1" |
23 | 34 | ||
@@ -27,10 +38,7 @@ enum { | |||
27 | DEFAULT_CRIT = 8 | 38 | DEFAULT_CRIT = 8 |
28 | }; | 39 | }; |
29 | 40 | ||
30 | #include "common.h" | 41 | |
31 | #include "utils.h" | ||
32 | #include "netutils.h" | ||
33 | #include <libpq-fe.h> | ||
34 | 42 | ||
35 | int process_arguments (int, char **); | 43 | int process_arguments (int, char **); |
36 | int validate_arguments (void); | 44 | int validate_arguments (void); |
@@ -53,11 +61,6 @@ double tcrit = (double)DEFAULT_CRIT; | |||
53 | PGconn *conn; | 61 | PGconn *conn; |
54 | /*PGresult *res;*/ | 62 | /*PGresult *res;*/ |
55 | 63 | ||
56 | const char *progname = "check_pgsql"; | ||
57 | const char *revision = "$Revision$"; | ||
58 | const char *copyright = "1999-2003"; | ||
59 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; | ||
60 | |||
61 | 64 | ||
62 | /****************************************************************************** | 65 | /****************************************************************************** |
63 | 66 | ||