From bded93f69b57e582109ae35a0b7a632adde7dc75 Mon Sep 17 00:00:00 2001 From: Wouter Wijngaards Date: Fri, 20 Jul 2018 05:42:38 +0000 Subject: [PATCH] - Fix #4130: print text describing -dd and unbound-checkconf on config file read error at startup, the errors may have been moved away by the startup process. git-svn-id: file:///svn/unbound/trunk@4792 be551aaa-1e26-0410-a405-d3ace91eadb9 --- daemon/unbound.c | 6 ++++-- doc/Changelog | 5 +++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/daemon/unbound.c b/daemon/unbound.c index 4100fe3d3..cb53af140 100644 --- a/daemon/unbound.c +++ b/daemon/unbound.c @@ -627,8 +627,10 @@ run_daemon(const char* cfgfile, int cmdline_verbose, int debug_mode, const char* fatal_exit("Could not alloc config defaults"); if(!config_read(cfg, cfgfile, daemon->chroot)) { if(errno != ENOENT) - fatal_exit("Could not read config file: %s", - cfgfile); + fatal_exit("Could not read config file: %s." + " With unbound -dd it stays on the " + " commandline to see more errors, " + " or unbound-checkconf", cfgfile); log_warn("Continuing with default config settings"); } apply_settings(daemon, cfg, cmdline_verbose, debug_mode, log_default_identity); diff --git a/doc/Changelog b/doc/Changelog index 4a4a2347c..859468d92 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,8 @@ +20 July 2018: Wouter + - Fix #4130: print text describing -dd and unbound-checkconf on + config file read error at startup, the errors may have been moved + away by the startup process. + 19 July 2018: Wouter - Fix #4129 unbound-control error message with wrong cert permissions is too cryptic.