summaryrefslogtreecommitdiffstats
path: root/src/objsync
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
commit19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch)
tree42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/objsync
parentInitial commit. (diff)
downloadceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.tar.xz
ceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.zip
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/objsync')
-rwxr-xr-xsrc/objsync/boto_del.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/objsync/boto_del.py b/src/objsync/boto_del.py
new file mode 100755
index 000000000..f738896dd
--- /dev/null
+++ b/src/objsync/boto_del.py
@@ -0,0 +1,41 @@
+#!/usr/bin/env 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)