mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-11-04 13:45:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			405 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			405 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/* Icinga 2 | (c) 2020 Icinga GmbH | GPLv2+ */
 | 
						|
 | 
						|
#include "base/string.hpp"
 | 
						|
#include "base/value.hpp"
 | 
						|
#include "icinga/envresolver.hpp"
 | 
						|
#include "icinga/checkresult.hpp"
 | 
						|
#include <cstdlib>
 | 
						|
 | 
						|
using namespace icinga;
 | 
						|
 | 
						|
bool EnvResolver::ResolveMacro(const String& macro, const CheckResult::Ptr&, Value *result) const
 | 
						|
{
 | 
						|
	auto value (getenv(macro.CStr()));
 | 
						|
 | 
						|
	if (value) {
 | 
						|
		*result = value;
 | 
						|
	}
 | 
						|
 | 
						|
	return value;
 | 
						|
}
 |