ServicegroupCommand: new CLI command
Created this to be able to also create Servicegroups over CLI. basically its the same file as HostGroupCommand. Tested in 1.5.1 fixes #1745
This commit is contained in:
parent
df678fe406
commit
40656c9dab
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace Icinga\Module\Director\Clicommands;
|
||||
|
||||
use Icinga\Module\Director\Cli\ObjectCommand;
|
||||
|
||||
/**
|
||||
* Manage Icinga Servicegroups
|
||||
*
|
||||
* Use this command to show, create, modify or delete Icinga Servicegroups
|
||||
* objects
|
||||
*/
|
||||
class ServiceGroupCommand extends ObjectCommand
|
||||
{
|
||||
}
|
Loading…
Reference in New Issue