| 
									
										
										
										
											2013-06-17 10:55:05 -07: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 13:26:25 -07:00
										 |  |  |   new PhabricatorAuthManagementRecoverWorkflow(), | 
					
						
							| 
									
										
										
										
											2013-06-24 15:55:41 -07:00
										 |  |  |   new PhabricatorAuthManagementRefreshWorkflow(), | 
					
						
							| 
									
										
										
										
											2013-06-17 13:26:25 -07:00
										 |  |  |   new PhabricatorAuthManagementLDAPWorkflow(), | 
					
						
							| 
									
										
										
										
											2013-06-17 10:55:05 -07:00
										 |  |  |   new PhutilHelpArgumentWorkflow(), | 
					
						
							|  |  |  | ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | $args->parseWorkflows($workflows); |