summaryrefslogtreecommitdiff
path: root/debian/patches/001_path-to-rrd.diff
diff options
context:
space:
mode:
authorJulien Valroff <julien@kirya.net>2010-01-04 20:32:20 +0100
committerJulien Valroff <julien@kirya.net>2010-01-04 20:32:20 +0100
commit87e43e9a32727789473272681ee19426ad3a6feb (patch)
tree0b8dfd5fa4f9f173c02cb61c03d4b1e8ad5a442b /debian/patches/001_path-to-rrd.diff
parenta3b3095749e8451a2acd073ca181789b8dba3925 (diff)
Switched from dpatch to quilt
Diffstat (limited to 'debian/patches/001_path-to-rrd.diff')
-rw-r--r--debian/patches/001_path-to-rrd.diff31
1 files changed, 31 insertions, 0 deletions
diff --git a/debian/patches/001_path-to-rrd.diff b/debian/patches/001_path-to-rrd.diff
new file mode 100644
index 0000000..442ea58
--- /dev/null
+++ b/debian/patches/001_path-to-rrd.diff
@@ -0,0 +1,31 @@
+Description: Set path to rrd files to /var/lib/mailgraph/
+Forwarded: not-needed
+
+--- a/mailgraph.cgi
++++ b/mailgraph.cgi
+@@ -16,9 +16,9 @@
+ my $points_per_sample = 3;
+ my $ypoints = 160;
+ my $ypoints_err = 96;
+-my $rrd = 'mailgraph.rrd'; # path to where the RRD database is
+-my $rrd_virus = 'mailgraph_virus.rrd'; # path to where the Virus RRD database is
+-my $tmp_dir = '/tmp/mailgraph'; # temporary directory where to store the images
++my $rrd = '/var/lib/mailgraph/mailgraph.rrd'; # path to where the RRD database is
++my $rrd_virus = '/var/lib/mailgraph/mailgraph_virus.rrd'; # path to where the Virus RRD database is
++my $tmp_dir = '/var/lib/mailgraph/'; # temporary directory where to store the images
+
+ my @graphs = (
+ { title => 'Last Day', seconds => 3600*24, },
+--- a/mailgraph.pl
++++ b/mailgraph.pl
+@@ -377,8 +377,8 @@
+
+ # global variables
+ my $logfile;
+-my $rrd = "mailgraph.rrd";
+-my $rrd_virus = "mailgraph_virus.rrd";
++my $rrd = "/var/lib/mailgraph/mailgraph.rrd";
++my $rrd_virus = "/var/lib/mailgraph/mailgraph_virus.rrd";
+ my $year;
+ my $this_minute;
+ my %sum = ( sent => 0, received => 0, bounced => 0, rejected => 0, virus => 0, spam => 0 );