diff --git a/doc/10-icinga2-client.md b/doc/10-icinga2-client.md index 11c18027784..0fb4567d9eb 100644 --- a/doc/10-icinga2-client.md +++ b/doc/10-icinga2-client.md @@ -104,7 +104,6 @@ Make sure to answer the first question with `n` (no). information/cli: Created backup file '/etc/icinga2/constants.conf.orig'. information/cli: Updating constants file '/etc/icinga2/constants.conf'. information/cli: Updating constants file '/etc/icinga2/constants.conf'. - Please edit the constants.conf file '/etc/icinga2/constants.conf' and set a secure 'TicketSalt' constant. Done. Now restart your Icinga 2 daemon to finish the installation! diff --git a/lib/cli/nodewizardcommand.cpp b/lib/cli/nodewizardcommand.cpp index 307065ccb2a..77108a210c2 100644 --- a/lib/cli/nodewizardcommand.cpp +++ b/lib/cli/nodewizardcommand.cpp @@ -586,9 +586,6 @@ int NodeWizardCommand::Run(const boost::program_options::variables_map& vm, cons String salt = RandomString(16); NodeUtility::UpdateConstant("TicketSalt", salt); - - std::cout << ConsoleColorTag(Console_Bold) - << "Please edit the constants.conf file '" << constants_file << "' and set a secure 'TicketSalt' constant." << ConsoleColorTag(Console_Normal) << "\n"; } std::cout << "Done.\n\n";