1
0
mirror of https://github.com/parkervcp/eggs.git synced 2024-10-06 23:57:07 +02:00

Create minio.sh

This commit is contained in:
tmunsch 2020-11-27 20:02:38 -05:00 committed by GitHub
parent 00ac8c9cef
commit 71d17ccd00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

63
storage/minio.sh Normal file
View File

@ -0,0 +1,63 @@
#!/bin/bash
##################################
echo Starting up....
echo "Startup Type: (normal/rotate)"
echo Detected $STARTUP_TYPE
if [ -f "key.txt" ]; then
echo "Key file detected..."
export MINIO_ACCESS_KEY=`cat key.txt`
else
echo minioadmin > key.txt
echo "No key file detected...Preparing First Time Boot"
fi
if [ -f "secret.txt" ]; then
echo "Secret file detected..."
export MINIO_SECRET_KEY=`cat secret.txt`
else
echo minioadmin > secret.txt
echo "No secret file detected...Preparing First Time Boot"
fi
if [ -f "oldsecret.txt" ]; then
echo "Old secret file detected..."
export MINIO_SECRET_KEY_OLD=`cat oldsecret.txt`
else
echo ".."
fi
if [ -f "oldkey.txt" ]; then
echo "Old key file detected..."
export MINIO_ACCESS_KEY_OLD=`cat oldkey.txt`
else
echo "......"
fi
if [ -f "justrotated.txt" ]; then
echo "Previous key rotation detected...."
echo "Clearing the Lanes...."
unset MINIO_ACCESS_KEY_OLD
unset MINIO_SECRET_KEY_OLD
STARTUP_TYPE=normal
rm justrotated.txt
rm oldsecret.txt
rm oldkey.txt
else
echo "......"
fi
##########################################
if [ -z "$STARTUP_TYPE" ] || [ "$STARTUP_TYPE" == "rotate" ]; then
touch justrotated.txt
export MINIO_ACCESS_KEY_OLD=$MINIO_ACCESS_KEY
echo $MINIO_ACCESS_KEY_OLD > oldkey.txt
export MINIO_SECRET_KEY_OLD=$MINIO_SECRET_KEY
echo $MINIO_SECRET_KEY_OLD > oldsecret.txt
export MINIO_ACCESS_KEY=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
echo $MINIO_ACCESS_KEY > key.txt
export MINIO_SECRET_KEY=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
echo $MINIO_SECRET_KEY > secret.txt
echo Your New Access Key is: $MINIO_ACCESS_KEY
echo Your New Secret Key is: $MINIO_SECRET_KEY
echo Your Old Access Key is: $MINIO_ACCESS_KEY_OLD
echo Your Old Access Key is: $MINIO_SECRET_KEY_OLD
echo Booting...
./minio server data --address 0.0.0.0:$SERVER_PORT
else
./minio server data --address 0.0.0.0:$SERVER_PORT
fi