[pkg-eucalyptus-commits] [SCM] managing cloud instances for Eucalyptus branch, master, updated. 3.0.0-alpha3-257-g1da8e3a

Garrett Holmstrom gholms at fedoraproject.org
Sun Jun 16 02:30:49 UTC 2013


The following commit has been merged in the master branch:
commit 42f329b8cb6f3a941647ced460a3a64360544f78
Author: Garrett Holmstrom <gholms at fedoraproject.org>
Date:   Sun Mar 31 12:24:34 2013 -0700

    Add missing option to DeleteLoadBalancer

diff --git a/euca2ools/commands/elasticloadbalancing/deleteloadbalancer.py b/euca2ools/commands/elasticloadbalancing/deleteloadbalancer.py
index 8fe3592..4f0da9e 100644
--- a/euca2ools/commands/elasticloadbalancing/deleteloadbalancer.py
+++ b/euca2ools/commands/elasticloadbalancing/deleteloadbalancer.py
@@ -28,6 +28,7 @@
 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 # POSSIBILITY OF SUCH DAMAGE.
 
+import argparse
 from euca2ools.commands.elasticloadbalancing import ELBRequest
 from requestbuilder import Arg
 
@@ -36,4 +37,6 @@ class DeleteLoadBalancer(ELBRequest):
     DESCRIPTION = ('Delete a load balancer\n\nIf the load balancer does not '
                    'exist, this command still succeeds.')
     ARGS = [Arg('LoadBalancerName', metavar='ELB',
-                help='name of the load balancer to delete (required)')]
+                help='name of the load balancer to delete (required)'),
+            Arg('--force', action='store_true', route_to=None,
+                help=argparse.SUPPRESS)]  # for compatibility

-- 
managing cloud instances for Eucalyptus



More information about the pkg-eucalyptus-commits mailing list