rrdcache OPTS > BASE_OPTIONS (#12074)

Not sure if it's `OPTS` in older versions of `rrdcached`, but it's 100% `BASE_OPTIONS` for 1.7.0. `OPTS` was broken for me for a while.
This commit is contained in:
Nathan Lam
2020-09-09 01:21:31 -07:00
committed by GitHub
parent 114df5aa8f
commit 7f0b483580

View File

@@ -209,10 +209,10 @@ OPTS="$OPTS -w 1800 -z 900"
Ubuntu (/etc/default/rrdcached) - RRDCached 1.5.5 and above.
```
OPTS="-l 0:42217"
OPTS="$OPTS -R -j /var/lib/rrdcached/journal/ -F"
OPTS="$OPTS -b /opt/librenms/rrd -B"
OPTS="$OPTS -w 1800 -z 900"
BASE_OPTIONS="-l 0:42217"
BASE_OPTIONS="$BASE_OPTIONS -R -j /var/lib/rrdcached/journal/ -F"
BASE_OPTIONS="$BASE_OPTIONS -b /opt/librenms/rrd -B"
BASE_OPTIONS="$BASE_OPTIONS -w 1800 -z 900"
```
Poller 1: