aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/conf
diff options
context:
space:
mode:
authorEdmondo Tommasina2010-05-12 14:39:03 +0200
committerPim van den Berg2010-05-13 14:18:30 +0200
commit69dbd9d549b7a285ef3ffceee8e368680b756bf4 (patch)
tree5697bd21cb471f4b951e41669909f864dfb414c3 /conf
parentplugin/memory: add locked state (diff)
downloadapt-panopticon_cgp-69dbd9d549b7a285ef3ffceee8e368680b756bf4.zip
apt-panopticon_cgp-69dbd9d549b7a285ef3ffceee8e368680b756bf4.tar.gz
apt-panopticon_cgp-69dbd9d549b7a285ef3ffceee8e368680b756bf4.tar.bz2
apt-panopticon_cgp-69dbd9d549b7a285ef3ffceee8e368680b756bf4.tar.xz
Allow to define alternate options for rrdtool in config file
Since I'm using a non standard installation of rrdtool, I always have to define the --font options when colling the rrdtool binary. I tried to implement this change in a general way to define locally rrdtool options in the config.local.php. Signed-off-by: Edmondo Tommasina <edmondo@eriadon.com>
Diffstat (limited to 'conf')
-rw-r--r--conf/config.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/conf/config.php b/conf/config.php
index d31b129..a36c083 100644
--- a/conf/config.php
+++ b/conf/config.php
@@ -9,6 +9,9 @@ $CONFIG['datadir'] = '/var/lib/collectd/rrd';
9# rrdtool executable 9# rrdtool executable
10$CONFIG['rrdtool'] = '/usr/bin/rrdtool'; 10$CONFIG['rrdtool'] = '/usr/bin/rrdtool';
11 11
12# rrdtool special options
13$CONFIG['rrdtool_opts'] = '';
14
12# category of hosts to show on main page 15# category of hosts to show on main page
13#$CONFIG['cat']['category1'] = array('host1', 'host2'); 16#$CONFIG['cat']['category1'] = array('host1', 'host2');
14 17