mirror of
https://github.com/parkervcp/eggs.git
synced 2024-11-23 04:52:52 +08:00
Cleaned up Key file locations
Moved all keys to keys folder
This commit is contained in:
parent
71d17ccd00
commit
ee4c054d27
@ -3,55 +3,55 @@
|
|||||||
echo Starting up....
|
echo Starting up....
|
||||||
echo "Startup Type: (normal/rotate)"
|
echo "Startup Type: (normal/rotate)"
|
||||||
echo Detected $STARTUP_TYPE
|
echo Detected $STARTUP_TYPE
|
||||||
if [ -f "key.txt" ]; then
|
if [ -f "keys/key.txt" ]; then
|
||||||
echo "Key file detected..."
|
echo "Key file detected..."
|
||||||
export MINIO_ACCESS_KEY=`cat key.txt`
|
export MINIO_ACCESS_KEY=`cat keys/key.txt`
|
||||||
else
|
else
|
||||||
echo minioadmin > key.txt
|
echo minioadmin > keys/key.txt
|
||||||
echo "No key file detected...Preparing First Time Boot"
|
echo "No key file detected...Preparing First Time Boot"
|
||||||
fi
|
fi
|
||||||
if [ -f "secret.txt" ]; then
|
if [ -f "keys/secret.txt" ]; then
|
||||||
echo "Secret file detected..."
|
echo "Secret file detected..."
|
||||||
export MINIO_SECRET_KEY=`cat secret.txt`
|
export MINIO_SECRET_KEY=`cat keys/secret.txt`
|
||||||
else
|
else
|
||||||
echo minioadmin > secret.txt
|
echo minioadmin > keys/secret.txt
|
||||||
echo "No secret file detected...Preparing First Time Boot"
|
echo "No secret file detected...Preparing First Time Boot"
|
||||||
fi
|
fi
|
||||||
if [ -f "oldsecret.txt" ]; then
|
if [ -f "keys/oldsecret.txt" ]; then
|
||||||
echo "Old secret file detected..."
|
echo "Old secret file detected..."
|
||||||
export MINIO_SECRET_KEY_OLD=`cat oldsecret.txt`
|
export MINIO_SECRET_KEY_OLD=`cat keys/oldsecret.txt`
|
||||||
else
|
else
|
||||||
echo ".."
|
echo ".."
|
||||||
fi
|
fi
|
||||||
if [ -f "oldkey.txt" ]; then
|
if [ -f "keys/oldkey.txt" ]; then
|
||||||
echo "Old key file detected..."
|
echo "Old key file detected..."
|
||||||
export MINIO_ACCESS_KEY_OLD=`cat oldkey.txt`
|
export MINIO_ACCESS_KEY_OLD=`cat keys/oldkey.txt`
|
||||||
else
|
else
|
||||||
echo "......"
|
echo "......"
|
||||||
fi
|
fi
|
||||||
if [ -f "justrotated.txt" ]; then
|
if [ -f "keys/justrotated.txt" ]; then
|
||||||
echo "Previous key rotation detected...."
|
echo "Previous key rotation detected...."
|
||||||
echo "Clearing the Lanes...."
|
echo "Clearing the Lanes...."
|
||||||
unset MINIO_ACCESS_KEY_OLD
|
unset MINIO_ACCESS_KEY_OLD
|
||||||
unset MINIO_SECRET_KEY_OLD
|
unset MINIO_SECRET_KEY_OLD
|
||||||
STARTUP_TYPE=normal
|
STARTUP_TYPE=normal
|
||||||
rm justrotated.txt
|
rm keys/justrotated.txt
|
||||||
rm oldsecret.txt
|
rm keys/oldsecret.txt
|
||||||
rm oldkey.txt
|
rm keys/oldkey.txt
|
||||||
else
|
else
|
||||||
echo "......"
|
echo "......"
|
||||||
fi
|
fi
|
||||||
##########################################
|
##########################################
|
||||||
if [ -z "$STARTUP_TYPE" ] || [ "$STARTUP_TYPE" == "rotate" ]; then
|
if [ -z "$STARTUP_TYPE" ] || [ "$STARTUP_TYPE" == "rotate" ]; then
|
||||||
touch justrotated.txt
|
touch keys/justrotated.txt
|
||||||
export MINIO_ACCESS_KEY_OLD=$MINIO_ACCESS_KEY
|
export MINIO_ACCESS_KEY_OLD=$MINIO_ACCESS_KEY
|
||||||
echo $MINIO_ACCESS_KEY_OLD > oldkey.txt
|
echo $MINIO_ACCESS_KEY_OLD > keys/oldkey.txt
|
||||||
export MINIO_SECRET_KEY_OLD=$MINIO_SECRET_KEY
|
export MINIO_SECRET_KEY_OLD=$MINIO_SECRET_KEY
|
||||||
echo $MINIO_SECRET_KEY_OLD > oldsecret.txt
|
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)
|
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
|
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)
|
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 $MINIO_SECRET_KEY > keys/secret.txt
|
||||||
echo Your New Access Key is: $MINIO_ACCESS_KEY
|
echo Your New Access Key is: $MINIO_ACCESS_KEY
|
||||||
echo Your New Secret Key is: $MINIO_SECRET_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_ACCESS_KEY_OLD
|
||||||
|
Loading…
Reference in New Issue
Block a user