summaryrefslogtreecommitdiff
path: root/src/startup.ml
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2017-12-12 21:07:25 +0000
committerDaniil Baturin <daniil@baturin.org>2017-12-12 21:07:25 +0000
commit8f2ff161343548a7d735808c203f0582fcb91145 (patch)
tree90e8045adbd5cd9630ac84f7770e5ff96ae85774 /src/startup.ml
parent02708b5fc0daa6dbcab6a12128663878c31da352 (diff)
downloadvyconf-8f2ff161343548a7d735808c203f0582fcb91145.tar.gz
vyconf-8f2ff161343548a7d735808c203f0582fcb91145.zip
Rename the Startup.load_config to load_daemon_config to avoid ambiguity with the appliance config.
Diffstat (limited to 'src/startup.ml')
-rw-r--r--src/startup.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/startup.ml b/src/startup.ml
index 8e1cd9a..c6e2f8c 100644
--- a/src/startup.ml
+++ b/src/startup.ml
@@ -29,7 +29,7 @@ let setup_logger daemonize log_file template =
Lwt_log.default := l; Lwt.return_unit
(** Load the config file or panic if it fails *)
-let load_config path =
+let load_daemon_config path =
let result = Vyconf_config.load path in
match result with
| Ok cfg -> cfg