mirror of
				https://github.com/pelican-eggs/eggs.git
				synced 2025-10-31 17:08:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/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
 |