Merge pull request #5433 from mcktr/mcktr/fix/list-feature-command-5431

Fix: update feature list help text
This commit is contained in:
Michael Friedrich 2017-07-27 10:28:26 +02:00 committed by GitHub
commit 93a7669cfc
1 changed files with 2 additions and 2 deletions

View File

@ -32,12 +32,12 @@ REGISTER_CLICOMMAND("feature/list", FeatureListCommand);
String FeatureListCommand::GetDescription(void) const
{
return "Lists all enabled Icinga 2 features.";
return "Lists all available Icinga 2 features.";
}
String FeatureListCommand::GetShortDescription(void) const
{
return "lists all enabled features";
return "lists all available features";
}
/**