aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_apt.c
diff options
context:
space:
mode:
authorGravatar Benoit Mortier <opensides@users.sourceforge.net> 2006-10-19 00:25:16 +0000
committerGravatar Benoit Mortier <opensides@users.sourceforge.net> 2006-10-19 00:25:16 +0000
commit082cfc29e3673abf595d70cd05f0a483947c22d5 (patch)
treead3b7e973e4cb01c1fc02999da2ad3b0640f1b99 /plugins/check_apt.c
parent584562a48ea731a3bf98d66c6602c64e1e72c63a (diff)
downloadmonitoring-plugins-082cfc29e3673abf595d70cd05f0a483947c22d5.tar.gz
first pass at cleaning localization for new release
first pass at making all the headre be the same licence, plugin, etc... git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1499 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_apt.c')
-rw-r--r--plugins/check_apt.c175
1 files changed, 97 insertions, 78 deletions
diff --git a/plugins/check_apt.c b/plugins/check_apt.c
index 528dd60c..9bc1249f 100644
--- a/plugins/check_apt.c
+++ b/plugins/check_apt.c
@@ -1,22 +1,35 @@
/******************************************************************************
- * check_apt.c: check for available updates in apt package management systems
- * original author: sean finney <seanius@seanius.net>
- * (with some common bits stolen from check_nagios.c)
- ******************************************************************************
-
- 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 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*
+* Nagios check_apt plugin
+*
+* License: GPL
+* Copyright (c) 1999-2006 nagios-plugins team
+*
+* Original author: sean finney
+*
+* Last Modified: $Date$
+*
+* Description:
+*
+* This file contains the check_apt plugin
+*
+* check for available updates in apt package management systems
+*
+* License Information:
+*
+* 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 2 of the License, or
+* (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program; if not, write to the Free Software
+* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id$
@@ -196,66 +209,6 @@ int process_arguments (int argc, char **argv) {
}
-/* informative help message */
-void print_help(void){
- print_revision(progname, revision);
- printf(_(COPYRIGHT), copyright, email);
- printf(_("\
-This plugin checks for software updates on systems that use\n\
-package management systems based on the apt-get(8) command\n\
-found in Debian GNU/Linux\n\
-\n\n"));
- print_usage();
- printf(_(UT_HELP_VRSN));
- printf(_(UT_TIMEOUT), timeout_interval);
- printf(_("\n\
- -U, --upgrade=OPTS\n\
- [Default] Perform an upgrade. If an optional OPTS argument is provided,\n\
- apt-get will be run with these command line options instead of the\n\
- default (%s).\n\
- Note that you may be required to have root privileges if you do not use\n\
- the default options.\n\
- -d, --dist-upgrade=OPTS\n\
- Perform a dist-upgrade instead of normal upgrade. Like with -U OPTS\n\
- can be provided to override the default options.\n\
- -n, --no-upgrade\n\
- Do not run the upgrade. Probably not useful (without -u at least).\n\
- -i, --include=REGEXP\n\
- Include only packages matching REGEXP. Can be specified multiple times;\n\
- the values will be combined together. Any patches matching this list\n\
- cause the plugin to return WARNING status. Others will be ignored.\n\
- Default is to include all packages.\n\
- -e, --exclude=REGEXP\n\
- Exclude packages matching REGEXP from the list of packages that would\n\
- otherwise be included. Can be specified multiple times; the values\n\
- will be combined together. Default is to exclude no packages.\n\
- -c, --critical=REGEXP\n\
- If the full package information of any of the upgradable packages match\n\
- this REGEXP, the plugin will return CRITICAL status. Can be specified\n\
- multiple times like above. Default is a regexp matching security\n\
- upgrades for Debian and Ubuntu:\n\
- \t%s\n\
- Note that the package must first match the include list before its\n\
- information is compared against the critical list.\n\
- \n\n"),
- UPGRADE_DEFAULT_OPTS, SECURITY_RE);
- printf(_("\
-The following options require root privileges and should be used with care: \
-\n\n"));
- printf(_("\
- -u, --update=OPTS\n\
- First perform an 'apt-get update'. An optional OPTS parameter overrides\n\
- the default options. Note: you may also need to adjust the global \n\
- timeout (with -t) to prevent the plugin from timing out if apt-get\n\
- upgrade is expected to take longer than the default timeout.\n\
-\n\n"));
-}
-
-/* simple usage heading */
-void print_usage(void){
- printf ("Usage: %s [[-d|-u|-U]opts] [-n] [-t timeout]\n", progname);
-}
-
/* run an apt-get upgrade */
int run_upgrade(int *pkgcount, int *secpkgcount){
int i=0, result=STATE_UNKNOWN, regres=0, pc=0, spc=0;
@@ -445,3 +398,69 @@ char* construct_cmdline(upgrade_type u, const char *opts){
sprintf(cmd, "%s %s %s", PATH_TO_APTGET, opts_ptr, aptcmd);
return cmd;
}
+
+/* informative help message */
+void
+print_help (void)
+{
+ print_revision(progname, revision);
+
+ printf(_(COPYRIGHT), copyright, email);
+
+ printf("%s\n", _("This plugin checks for software updates on systems that use"));
+ printf("%s\n", _("package management systems based on the apt-get(8) command"));
+ printf("%s\n", _("found in Debian GNU/Linux"));
+
+ print_usage();
+
+ printf(_(UT_HELP_VRSN));
+
+ printf(_(UT_TIMEOUT), timeout_interval);
+
+ printf(_("\n\
+ -U, --upgrade=OPTS\n\
+ [Default] Perform an upgrade. If an optional OPTS argument is provided,\n\
+ apt-get will be run with these command line options instead of the\n\
+ default (%s).\n\
+ Note that you may be required to have root privileges if you do not use\n\
+ the default options.\n\
+ -d, --dist-upgrade=OPTS\n\
+ Perform a dist-upgrade instead of normal upgrade. Like with -U OPTS\n\
+ can be provided to override the default options.\n\
+ -n, --no-upgrade\n\
+ Do not run the upgrade. Probably not useful (without -u at least).\n\
+ -i, --include=REGEXP\n\
+ Include only packages matching REGEXP. Can be specified multiple times;\n\
+ the values will be combined together. Any patches matching this list\n\
+ cause the plugin to return WARNING status. Others will be ignored.\n\
+ Default is to include all packages.\n\
+ -e, --exclude=REGEXP\n\
+ Exclude packages matching REGEXP from the list of packages that would\n\
+ otherwise be included. Can be specified multiple times; the values\n\
+ will be combined together. Default is to exclude no packages.\n\
+ -c, --critical=REGEXP\n\
+ If the full package information of any of the upgradable packages match\n\
+ this REGEXP, the plugin will return CRITICAL status. Can be specified\n\
+ multiple times like above. Default is a regexp matching security\n\
+ upgrades for Debian and Ubuntu:\n\
+ \t%s\n\
+ Note that the package must first match the include list before its\n\
+ information is compared against the critical list.\n\
+ \n\n"),
+ UPGRADE_DEFAULT_OPTS, SECURITY_RE);
+
+ printf ("%s\n\n", _("The following options require root privileges and should be used with care:"));
+ printf (" %s\n", "-u, --update=OPTS");
+ printf (" %s\n", _("First perform an 'apt-get update'. An optional OPTS parameter overrides"));
+ printf (" %s\n", _("the default options. Note: you may also need to adjust the global"));
+ printf (" %s\n", _("timeout (with -t) to prevent the plugin from timing out if apt-get"));
+ printf (" %s\n", _("upgrade is expected to take longer than the default timeout."));
+}
+
+
+/* simple usage heading */
+void
+print_usage(void)
+{
+ printf ("Usage: %s [[-d|-u|-U]opts] [-n] [-t timeout]\n", progname);
+}