amazon_s3: Fix to support the EU S3 datacenter, which is more picky about attempts to create already existing buckets.
parent
4ce14aa621
commit
a4ec579d1a
|
@ -132,6 +132,10 @@ sub getbucket {
|
|||
});
|
||||
}
|
||||
|
||||
if (! $bucket) {
|
||||
# Try to use existing bucket.
|
||||
$bucket=$s3->bucket($config{amazon_s3_bucket});
|
||||
}
|
||||
if (! $bucket) {
|
||||
error(gettext("Failed to create S3 bucket: ").
|
||||
$s3->err.": ".$s3->errstr."\n");
|
||||
|
|
|
@ -13,6 +13,8 @@ ikiwiki (3.20100123) UNRELEASED; urgency=low
|
|||
* auto-blog.setup: Lock all pages, so only admin can post to the blog
|
||||
by default, and enable opendiscussion so others can comment.
|
||||
* Fix color and format plugins to appear in the websetup interface.
|
||||
* amazon_s3: Fix to support the EU S3 datacenter, which is more picky
|
||||
about attempts to create already existing buckets.
|
||||
|
||||
-- Joey Hess <joeyh@debian.org> Tue, 26 Jan 2010 22:25:33 -0500
|
||||
|
||||
|
|
Loading…
Reference in New Issue