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:
lokidaibel 2019-01-02 10:23:49 +01:00 committed by Thomas Gelf
parent df678fe406
commit 40656c9dab
1 changed files with 15 additions and 0 deletions

View File

@ -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
{
}