blob: f61f4fcc26a1e24bd53c2bacf9b3abde1fcb0df9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
namespace Icinga\Module\Director\Clicommands;
use Icinga\Module\Director\Cli\ObjectCommand;
/**
* Manage Icinga Endpoints
*
* Use this command to show, create, modify or delete Icinga Endpoint
* objects
*/
class EndpointCommand extends ObjectCommand
{
public function statusAction()
{
print_r($this->api()->getStatus());
}
}
|