KickstartCommand: new CLI command

This commit is contained in:
Thomas Gelf 2016-02-18 16:13:04 +01:00
parent 0af71a82f0
commit bd99ece138
1 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,72 @@
<?php
namespace Icinga\Module\Director\Clicommands;
use Icinga\Module\Director\Cli\Command;
use Icinga\Module\Director\KickstartHelper;
/**
* Kickstart a Director installation
*
* Once you prepared your DB resource and created
* This command retrieves information about unapplied database migration and
* helps applying them.
*/
class KickstartCommand extends Command
{
/**
* Check whether a kickstart run is required
*
* This is the case when there is a kickstart.ini in your Directors config
* directory and no ApiUser in your Director DB.
*
* This is mostly for automation, so one could create a Puppet manifest
* as follows:
*
* exec { 'Icinga Director Kickstart':
* path => '/usr/local/bin:/usr/bin:/bin',
* command => 'icingacli director kickstart run',
* onlyif => 'icingacli director kickstart required',
* require => Exec['Icinga Director DB migration'],
* }
*
* Exit code 0 means that a kickstart run is required, code 2 that it is
* not.
*/
public function requiredAction()
{
if ($this->kickstart()->isConfigured()) {
if ($this->kickstart()->isRequired()) {
if ($this->isVerbose) {
echo "Kickstart has been configured and should be triggered\n";
}
exit(0);
} else {
echo "Kickstart configured, execution is not required\n";
exit(1);
}
} else {
echo "Kickstart has not been configured\n";
exit(2);
}
}
/**
* Trigger the kickstart helper
*
* This will connect to the endpoint configured in your kickstart.ini,
* store the given API user and import existing objects like zones,
* endpoints and commands.
*/
public function runAction()
{
$this->kickstart()->run();
exit(0);
}
protected function kickstart()
{
return new KickstartHelper($this->db());
}
}