NAME
Kernel::System::SysConfig::ValueType::SystemCommand – System configuration SystemCommand value type backed.
PUBLIC INTERFACE
new()
Create an object. Do not use it directly, instead use:
use Kernel::System::ObjectManager;
local $Kernel::OM = Kernel::System::ObjectManager->new();
my $ValueTypeObject = $Kernel::OM->Get('Kernel::System::SysConfig::ValueType::SystemCommand');
SettingEffectiveValueCheck()
Check if provided EffectiveValue matches structure defined in XMLContentParsed.
my %Result = $ValueTypeObject->SettingEffectiveValueCheck(
EffectiveValue => '/usr/bin/sendmail',
);
Result: %Result = ( EffectiveValue => '/usr/bin/sendmail', Success => 1, );