Summary: Ref T603. We might need a fine-grained CLI tool later on, but here's a bat we can bludgeon things with. Test Plan: - Ran `bin/policy unlock D12` (adjusted policies). - Ran `bin/policy unlock rPca85c457ebcb` (got "not mutable" stuff). Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T603 Differential Revision: https://secure.phabricator.com/D7189
		
			
				
	
	
		
			24 lines
		
	
	
		
			578 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			578 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env php
 | 
						|
<?php
 | 
						|
 | 
						|
$root = dirname(dirname(dirname(__FILE__)));
 | 
						|
require_once $root.'/scripts/__init_script__.php';
 | 
						|
 | 
						|
$args = new PhutilArgumentParser($argv);
 | 
						|
$args->setTagline('manage policies');
 | 
						|
$args->setSynopsis(<<<EOSYNOPSIS
 | 
						|
**policy** __command__ [__options__]
 | 
						|
    Administrative tool for reviewing and editing policies.
 | 
						|
 | 
						|
EOSYNOPSIS
 | 
						|
  );
 | 
						|
$args->parseStandardArguments();
 | 
						|
 | 
						|
$workflows = array(
 | 
						|
  new PhabricatorPolicyManagementShowWorkflow(),
 | 
						|
  new PhabricatorPolicyManagementUnlockWorkflow(),
 | 
						|
  new PhutilHelpArgumentWorkflow(),
 | 
						|
);
 | 
						|
 | 
						|
$args->parseWorkflows($workflows);
 |