mirror of
https://github.com/parkervcp/eggs.git
synced 2024-11-13 21:27:44 +08:00
54c6dd3396
Added startup type update to update minio version Color coded console output to make things more readable
70 lines
2.5 KiB
Bash
70 lines
2.5 KiB
Bash
#!/bin/bash
|
|
##################################
|
|
echo "$(tput setaf 2)Starting up...."
|
|
echo "Startup Type: $(tput setaf 2)$STARTUP_TYPE"
|
|
if [ -f "keys/key.txt" ]; then
|
|
echo "$(tput setaf 2)Key file detected..."
|
|
export MINIO_ACCESS_KEY=`cat keys/key.txt`
|
|
else
|
|
echo minioadmin > keys/key.txt
|
|
echo "$(tput setaf 3)No key file detected...Preparing First Time Boot"
|
|
fi
|
|
if [ -f "keys/secret.txt" ]; then
|
|
echo "$(tput setaf 2)Secret file detected..."
|
|
export MINIO_SECRET_KEY=`cat keys/secret.txt`
|
|
else
|
|
echo minioadmin > keys/secret.txt
|
|
echo "No secret file detected...Preparing First Time Boot"
|
|
fi
|
|
if [ -f "keys/oldsecret.txt" ]; then
|
|
echo "$(tput setaf 1)Old secret file detected..."
|
|
export MINIO_SECRET_KEY_OLD=`cat keys/oldsecret.txt`
|
|
fi
|
|
if [ -f "keys/oldkey.txt" ]; then
|
|
echo "$(tput setaf 1)Old key file detected..."
|
|
export MINIO_ACCESS_KEY_OLD=`cat keys/oldkey.txt`
|
|
fi
|
|
if [ -f "keys/justrotated.txt" ]; then
|
|
echo "$(tput setaf 3)Previous key rotation detected...."
|
|
echo "$(tput setaf 3)Clearing the Lanes...."
|
|
unset MINIO_ACCESS_KEY_OLD
|
|
unset MINIO_SECRET_KEY_OLD
|
|
echo "$(tput setaf 2)Lanes Cleared!"
|
|
STARTUP_TYPE=normal
|
|
rm keys/justrotated.txt
|
|
rm keys/oldsecret.txt
|
|
rm keys/oldkey.txt
|
|
fi
|
|
|
|
##########################################
|
|
if [ -z "$STARTUP_TYPE" ] || [ "$STARTUP_TYPE" == "update" ]; then
|
|
echo "$(tput setaf 3)Performing update...."
|
|
echo "$(tput setaf 1)Removing old minio version"
|
|
rm minio
|
|
echo "$(tput setaf 3)Downloading new minio version"
|
|
wget https://dl.min.io/server/minio/release/linux-amd64/minio
|
|
chmod +x minio
|
|
echo "$(tput setaf 2)Update Complete"
|
|
fi
|
|
##########################################
|
|
if [ -z "$STARTUP_TYPE" ] || [ "$STARTUP_TYPE" == "rotate" ]; then
|
|
touch keys/justrotated.txt
|
|
export MINIO_ACCESS_KEY_OLD=$MINIO_ACCESS_KEY
|
|
echo $MINIO_ACCESS_KEY_OLD > keys/oldkey.txt
|
|
export MINIO_SECRET_KEY_OLD=$MINIO_SECRET_KEY
|
|
echo $MINIO_SECRET_KEY_OLD > keys/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 > keys/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 > keys/secret.txt
|
|
echo "Your New Access Key is: $(tput setaf 2)$MINIO_ACCESS_KEY"
|
|
echo "Your New Secret Key is: $(tput setaf 2)$MINIO_SECRET_KEY"
|
|
echo "Your Old Access Key is: $(tput setaf 3)$MINIO_ACCESS_KEY_OLD"
|
|
echo "Your Old Access Key is: $(tput setaf 3)$MINIO_SECRET_KEY_OLD"
|
|
echo "$(tput setaf 2)Booting..."
|
|
./minio server data --address 0.0.0.0:$SERVER_PORT
|
|
else
|
|
echo "$(tput setaf 2)Booting..."
|
|
./minio server data --address 0.0.0.0:$SERVER_PORT
|
|
fi
|