From a9ee3e50b8d83e1b6bf58d4c6f13bcafbcaae96d Mon Sep 17 00:00:00 2001 From: Tim Bruijnzeels Date: Wed, 10 Jun 2020 16:02:38 +0200 Subject: [PATCH] Fix help text for krill --config (#237) --- src/daemon/config.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/daemon/config.rs b/src/daemon/config.rs index 3d102381..60008bde 100644 --- a/src/daemon/config.rs +++ b/src/daemon/config.rs @@ -335,13 +335,7 @@ impl Config { .short("c") .long("config") .value_name("FILE") - .help( - "Specify non-default config file. If no file is \ - specified './daemon/defaults/krill.conf' will be used to \ - determine default values for all settings. Note that you \ - can use any of the following options to override any of \ - these values..", - ) + .help("Override the path to the config file (default: './defaults/krill.conf')") .required(false), ) .get_matches();