2013-06-17 19:55:05 +02:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
|
|
|
|
$root = dirname(dirname(dirname(__FILE__)));
|
|
|
|
require_once $root.'/scripts/__init_script__.php';
|
|
|
|
|
|
|
|
$args = new PhutilArgumentParser($argv);
|
|
|
|
$args->setTagline('manage authentication');
|
|
|
|
$args->setSynopsis(<<<EOSYNOPSIS
|
|
|
|
**auth** __command__ [__options__]
|
|
|
|
Manage Phabricator authentication configuration.
|
|
|
|
|
|
|
|
EOSYNOPSIS
|
|
|
|
);
|
|
|
|
$args->parseStandardArguments();
|
|
|
|
|
|
|
|
$workflows = array(
|
2013-06-17 22:26:25 +02:00
|
|
|
new PhabricatorAuthManagementRecoverWorkflow(),
|
2013-06-25 00:55:41 +02:00
|
|
|
new PhabricatorAuthManagementRefreshWorkflow(),
|
2013-06-17 22:26:25 +02:00
|
|
|
new PhabricatorAuthManagementLDAPWorkflow(),
|
2013-06-17 19:55:05 +02:00
|
|
|
new PhutilHelpArgumentWorkflow(),
|
|
|
|
);
|
|
|
|
|
|
|
|
$args->parseWorkflows($workflows);
|