Summary: Depends on D19072. Ref T13073. Currently, you can leave leases stranded by using `^C` to interrupt the script. Handle signals and release leases on destruction if they haven't activated yet. Also, print out more useful information before and after activation. Test Plan: Mashed ^C while runnning `bin/drydock lease ... --trace`, saw the lease release. Subscribers: yelirekim, PHID-OPKG-gm6ozazyms6q6i22gyam Maniphest Tasks: T13073 Differential Revision: https://secure.phabricator.com/D19073
		
			
				
	
	
		
			22 lines
		
	
	
		
			600 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			600 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env php
 | 
						|
<?php
 | 
						|
 | 
						|
$root = dirname(dirname(dirname(__FILE__)));
 | 
						|
require_once $root.'/scripts/init/init-script-with-signals.php';
 | 
						|
 | 
						|
$args = new PhutilArgumentParser($argv);
 | 
						|
$args->setTagline(pht('manage drydock software resources'));
 | 
						|
$args->setSynopsis(<<<EOSYNOPSIS
 | 
						|
**drydock** __commmand__ [__options__]
 | 
						|
    Manage Drydock stuff. NEW AND EXPERIMENTAL.
 | 
						|
 | 
						|
EOSYNOPSIS
 | 
						|
);
 | 
						|
$args->parseStandardArguments();
 | 
						|
 | 
						|
$workflows = id(new PhutilClassMapQuery())
 | 
						|
  ->setAncestorClass('DrydockManagementWorkflow')
 | 
						|
  ->execute();
 | 
						|
$workflows[] = new PhutilHelpArgumentWorkflow();
 | 
						|
$args->parseWorkflows($workflows);
 |