summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2014-07-06 13:33:12 +0200
committerThomas Graf <tgraf@suug.ch>2014-07-06 13:33:12 +0200
commitbe8ef18b742757e2a722bdc60bca546553f4d15c (patch)
tree2abf66838341ce60400a14f2c552b58b9016c090
parentb34be16240656f08a03210055152d29a263f6764 (diff)
conf: Read global config from $(sysconfdir)/bmon.conf
Signed-off-by: Thomas Graf <tgraf@suug.ch>
-rw-r--r--src/conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf.c b/src/conf.c
index ba6a8d5..48d07c8 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -531,7 +531,7 @@ void configfile_read(void)
if (configfile)
conf_read(configfile, 1);
else {
- conf_read(SYSCONFDIR "/bmonrc", 0);
+ conf_read(SYSCONFDIR "/bmon.conf", 0);
if (getenv("HOME")) {
char path[FILENAME_MAX+1];