diff options
Diffstat (limited to '')
-rw-r--r-- | application/clicommands/HostsCommand.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/application/clicommands/HostsCommand.php b/application/clicommands/HostsCommand.php new file mode 100644 index 0000000..3008284 --- /dev/null +++ b/application/clicommands/HostsCommand.php @@ -0,0 +1,14 @@ +<?php + +namespace Icinga\Module\Director\Clicommands; + +use Icinga\Module\Director\Cli\ObjectsCommand; + +/** + * Manage Icinga Hosts + * + * Use this command to list Icinga Host objects + */ +class HostsCommand extends ObjectsCommand +{ +} |