sunetdrive/templates/scriptreceiver/create_bucket_without_question.sh

14 lines
522 B
Bash
Raw Normal View History

2023-02-13 09:44:56 +00:00
#!/bin/bash
key=${1}
secret=${2}
endpoint=${3}
bucket=${4}
user=${5}
/usr/local/bin/occ files_external:create "${bucket}" \
amazons3 -c bucket="${bucket}" -c key="${key}" -c secret="${secret}" -c hostname="${endpoint}" -c use_ssl=true -c use_path_style=true -c region=us-east-1 \
-c useMultipartCopy=false amazons3::accesskey --user "${user}"
2023-02-13 09:44:56 +00:00
for shareid in $(/usr/local/bin/occ files_external:export "${user}" | jq -r '.[].mount_id'); do
/usr/local/bin/occ files_external:option "${shareid}" enable_sharing true
done