Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parsing (0.19 sec)

  1. helm-releases/minio-3.1.7.tgz

    CMD=$(${MC} ls myminio/$BUCKET > /dev/null 2>&1) return $? } # createBucket ($bucket, $policy, $purge) # Ensure bucket exists, purging if asked to createBucket() { BUCKET=$1 POLICY=$2 PURGE=$3 VERSIONING=$4 # Purge the bucket, if set & exists # Since PURGE is user input, check explicitly for `true` if [ $PURGE = true ]; then if checkBucketExists $BUCKET ; then echo "Purging bucket '$BUCKET'." set +e ; # don't exit if this fails ${MC} rm -r --force myminio/$BUCKET set -e ; # reset `e` as active else...
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Oct 03 22:23:22 GMT 2021
    - 14.6K bytes
    - Viewed (0)
Back to top