~ubuntu-branches/ubuntu/precise/munin/precise-updates

« back to all changes in this revision

Viewing changes to debian/patches/lp_800845_postfix_mailvolume_missing_logfile.patch

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-01-06 08:54:54 UTC
  • Revision ID: package-import@ubuntu.com-20120106085454-i49ba80fly9vll7l
Tags: 1.4.6-2ubuntu2
* Fix sensors_fan for sensors output without minimum values
  (LP: #840449).
  - debian/patches/lp_840449_sensors_fan_minimum_is_optional.patch
* Fix "mysql_ plugin fails when MySQL compiled without INNODB"
  (LP: #757617)
  - debian/patches/upstream_bug_884_fixed_in_trunk.patch
* Fix munin_stats plugin: missing newline in "config"
  (LP: #830564).
  - debian/patches/upstream_bug_937_fixed_in_trunk.patch
* Fix postfix_mailvolume when logfile is missing
  (LP: #800845).
 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Description: Fix postfix_mailvolume when logfile is missing
 
2
Bug: http://munin-monitoring.org/ticket/1142
 
3
Ubuntu-Bug: https://launchpad.net/bugs/800845
 
4
Author: Breena Kermott
 
5
Reviewed-by: Daniel Hahler
 
6
Last-Update: 2011-06-22
 
7
Applied-Upstream: no
 
8
 
 
9
Index: munin-1.4.6-1ubuntu1/plugins/node.d/postfix_mailvolume.in
 
10
===================================================================
 
11
--- munin-1.4.6-1ubuntu1.orig/plugins/node.d/postfix_mailvolume.in      2011-09-03 19:10:29.161368136 +0200
 
12
+++ munin-1.4.6-1ubuntu1/plugins/node.d/postfix_mailvolume.in   2011-09-03 19:16:10.977368328 +0200
 
13
@@ -113,7 +113,7 @@
 
14
 my $logfile = "$LOGDIR/$LOGFILE";
 
15
 
 
16
 if (! -f $logfile) {
 
17
-    print "delivered.value U\n";
 
18
+    print "volume.value U\n";
 
19
     exit 1;
 
20
 }
 
21