summaryrefslogtreecommitdiffstats
path: root/plugins/check_apt.c
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2008-11-23 05:38:47 (GMT)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2008-11-23 05:38:47 (GMT)
commit6fbd14fea5c111a23d9074d25499991cbfa58f79 (patch)
tree0c1f5a77cacc664eadd47216b70e3257337484db /plugins/check_apt.c
parent56cf151ae91c5081a99365848a3f060dfe14a68c (diff)
downloadmonitoring-plugins-6fbd14fea5c111a23d9074d25499991cbfa58f79.tar.gz
Removing CVS/SVN tags and replacing with git-based versioning
For contrib/, full tags have been imported from subversion git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2091 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_apt.c')
-rw-r--r--plugins/check_apt.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/plugins/check_apt.c b/plugins/check_apt.c
index 49a7c4f..3da54bc 100644
--- a/plugins/check_apt.c
+++ b/plugins/check_apt.c
@@ -7,8 +7,6 @@
7* 7*
8* Original author: Sean Finney 8* Original author: Sean Finney
9* 9*
10* Last Modified: $Date$
11*
12* Description: 10* Description:
13* 11*
14* This file contains the check_apt plugin 12* This file contains the check_apt plugin
@@ -29,12 +27,9 @@
29* You should have received a copy of the GNU General Public License 27* You should have received a copy of the GNU General Public License
30* along with this program. If not, see <http://www.gnu.org/licenses/>. 28* along with this program. If not, see <http://www.gnu.org/licenses/>.
31* 29*
32* $Id$
33*
34*****************************************************************************/ 30*****************************************************************************/
35 31
36const char *progname = "check_apt"; 32const char *progname = "check_apt";
37const char *revision = "$Revision$";
38const char *copyright = "2006-2008"; 33const char *copyright = "2006-2008";
39const char *email = "nagiosplug-devel@lists.sourceforge.net"; 34const char *email = "nagiosplug-devel@lists.sourceforge.net";
40 35
@@ -159,7 +154,7 @@ int process_arguments (int argc, char **argv) {
159 print_help(); 154 print_help();
160 exit(STATE_OK); 155 exit(STATE_OK);
161 case 'V': 156 case 'V':
162 print_revision(progname, revision); 157 print_revision(progname, NP_VERSION);
163 exit(STATE_OK); 158 exit(STATE_OK);
164 case 'v': 159 case 'v':
165 verbose++; 160 verbose++;
@@ -404,7 +399,7 @@ char* construct_cmdline(upgrade_type u, const char *opts){
404void 399void
405print_help (void) 400print_help (void)
406{ 401{
407 print_revision(progname, revision); 402 print_revision(progname, NP_VERSION);
408 403
409 printf(_(COPYRIGHT), copyright, email); 404 printf(_(COPYRIGHT), copyright, email);
410 405