mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-11 03:11:50 +00:00
S3: support disabling ACL with none value
This change lets you disable ACL when using S3 by using a configuration value of `none`. This way we maintain backward compatibility with the default setting being `private`. Fixes: #1067
This commit is contained in:
committed by
Benj Fassbind
parent
f61514edaf
commit
c9f5763a70
@@ -49,6 +49,8 @@ func NewPublishedStorageRaw(
|
||||
) (*PublishedStorage, error) {
|
||||
if defaultACL == "" {
|
||||
defaultACL = "private"
|
||||
} else if defaultACL == "none" {
|
||||
defaultACL = ""
|
||||
}
|
||||
|
||||
if storageClass == "STANDARD" {
|
||||
|
||||
Reference in New Issue
Block a user