diff --git a/etc/init.d/icinga2.in b/etc/init.d/icinga2.in index 15054619e..f123366fa 100644 --- a/etc/init.d/icinga2.in +++ b/etc/init.d/icinga2.in @@ -45,7 +45,7 @@ start() { mkdir -p `dirname -- $ICINGA2_ERROR_LOG` echo "Validating the configuration file:" - if ! $DAEMON -c $ICINGA2_CONFIG_FILE -v; then + if ! $DAEMON -c $ICINGA2_CONFIG_FILE -C; then echo "Not starting Icinga 2 due to configuration errors." exit 1 fi diff --git a/icinga-app/icinga.cpp b/icinga-app/icinga.cpp index 1f64c60de..f8b666252 100644 --- a/icinga-app/icinga.cpp +++ b/icinga-app/icinga.cpp @@ -217,7 +217,7 @@ int main(int argc, char **argv) ("library,l", po::value >(), "load a library") ("include,I", po::value >(), "add include search directory") ("config,c", po::value >(), "parse a configuration file") - ("validate,v", "exit after validating the configuration") + ("validate,C", "exit after validating the configuration") ("debug,x", "enable debugging") ("daemonize,d", "detach from the controlling terminal") ("errorlog,e", po::value(), "log fatal errors to the specified log file (only works in combination with --daemonize)")