]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
Add boto_del.py
authorColin Patrick McCabe <cmccabe@alumni.cmu.edu>
Wed, 23 Mar 2011 01:05:19 +0000 (18:05 -0700)
committerColin Patrick McCabe <cmccabe@alumni.cmu.edu>
Wed, 23 Mar 2011 16:28:08 +0000 (09:28 -0700)
Signed-off-by: Colin McCabe <colin.mccabe@dreamhost.com>
src/objsync/boto_del.py [new file with mode: 0755]

diff --git a/src/objsync/boto_del.py b/src/objsync/boto_del.py
new file mode 100755 (executable)
index 0000000..14e7905
--- /dev/null
@@ -0,0 +1,41 @@
+#!/usr/bin/python
+
+#
+# Ceph - scalable distributed file system
+#
+# Copyright (C) 2011 New Dream Network
+#
+# This is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License version 2.1, as published by the Free Software
+# Foundation.  See file COPYING.
+#
+
+"""
+boto_del.py: simple bucket deletion program
+
+A lot of common s3 clients can't delete weirdly named buckets.
+But this little script can do it!
+"""
+
+from boto.s3.connection import OrdinaryCallingFormat
+from boto.s3.connection import S3Connection
+from boto.s3.key import Key
+from sys import stderr
+import boto
+import os
+import sys
+
+bucket_name = sys.argv[1]
+conn = S3Connection(calling_format=OrdinaryCallingFormat(), is_secure=False,
+                aws_access_key_id=os.environ["AKEY"],
+                aws_secret_access_key=os.environ["SKEY"])
+bucket = conn.lookup(bucket_name)
+if (bucket == None):
+    print "bucket '%s' no longer exists" % bucket_name
+    sys.exit(0)
+
+print "deleting bucket '%s' ..." % bucket_name
+bucket.delete()
+print "done."
+sys.exit(0)