mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-11-04 05:34:12 +01:00 
			
		
		
		
	This requires write permissions for
- etc/features-*
- etc/*.conf
- var/{lib,cache}/icinga2/*
Typically permissions are handled by prepare-dirs,
or the respective CLI commands are run as root either way.
fixes #4947
		
	
			
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
 | 
						|
 | 
						|
#include "cli/featuredisablecommand.hpp"
 | 
						|
#include "cli/featureutility.hpp"
 | 
						|
#include "base/logger.hpp"
 | 
						|
 | 
						|
using namespace icinga;
 | 
						|
namespace po = boost::program_options;
 | 
						|
 | 
						|
REGISTER_CLICOMMAND("feature/disable", FeatureDisableCommand);
 | 
						|
 | 
						|
String FeatureDisableCommand::GetDescription() const
 | 
						|
{
 | 
						|
	return "Disables specified Icinga 2 feature.";
 | 
						|
}
 | 
						|
 | 
						|
String FeatureDisableCommand::GetShortDescription() const
 | 
						|
{
 | 
						|
	return "disables specified feature";
 | 
						|
}
 | 
						|
 | 
						|
std::vector<String> FeatureDisableCommand::GetPositionalSuggestions(const String& word) const
 | 
						|
{
 | 
						|
	return FeatureUtility::GetFieldCompletionSuggestions(word, false);
 | 
						|
}
 | 
						|
 | 
						|
int FeatureDisableCommand::GetMinArguments() const
 | 
						|
{
 | 
						|
	return 1;
 | 
						|
}
 | 
						|
 | 
						|
int FeatureDisableCommand::GetMaxArguments() const
 | 
						|
{
 | 
						|
	return -1;
 | 
						|
}
 | 
						|
 | 
						|
ImpersonationLevel FeatureDisableCommand::GetImpersonationLevel() const
 | 
						|
{
 | 
						|
	return ImpersonateIcinga;
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * The entry point for the "feature disable" CLI command.
 | 
						|
 *
 | 
						|
 * @returns An exit status.
 | 
						|
 */
 | 
						|
int FeatureDisableCommand::Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const
 | 
						|
{
 | 
						|
	if (ap.empty()) {
 | 
						|
		Log(LogCritical, "cli", "Cannot disable feature(s). Name(s) are missing!");
 | 
						|
		return 0;
 | 
						|
	}
 | 
						|
 | 
						|
	return FeatureUtility::DisableFeatures(ap);
 | 
						|
}
 |