Added no bootstrap install option.

This commit is contained in:
yohan 2020-04-15 16:43:16 +02:00
parent 9a9aa91396
commit bd859d1a2f

View File

@ -6,41 +6,57 @@ SCRIPTPATH=$(dirname $SCRIPT)
cd $SCRIPTPATH cd $SCRIPTPATH
test -z $1 || HOST="_$1" if test -z "$1" && [ "$1" != "bootstrap" ] && [ "$1" != "normal" ]
test -z $2 || INSTANCE="_$2" then
echo "First argument must be \"bootstap\" or normal"
exit 1
else
REPO="$1"
fi
test -z $2 || HOST="_$2"
test -z $3 || INSTANCE="_$3"
test -f ~/secrets.tar.gz.enc || { echo "ERROR: ~/secrets.tar.gz.enc not found, exiting."; exit 1; } test -f ~/secrets.tar.gz.enc || { echo "ERROR: ~/secrets.tar.gz.enc not found, exiting."; exit 1; }
openssl enc -aes-256-cbc -d -in ~/secrets.tar.gz.enc \ openssl enc -aes-256-cbc -d -in ~/secrets.tar.gz.enc \
| sudo tar -zxv --strip 2 secrets/docker-mysql-stack${HOST}${INSTANCE}/debian.cnf \ | sudo tar -zxv --strip 2 secrets/docker-mysql-stack${HOST}${INSTANCE}/debian.cnf \
|| { echo "Could not extract from secrets archive, exiting."; rm -f ~/secrets.tar.gz.enc; exit 1; } || { echo "Could not extract from secrets archive, exiting."; rm -f ~/secrets.tar.gz.enc; exit 1; }
sudo chown root. debian.cnf sudo chown root. debian.cnf
test -f ~/openrc.sh || { echo "ERROR: ~/openrc.sh not found, exiting."; exit 1; } if [ "$REPO" == "bootstrap" ]
source ~/openrc.sh then
export OS_REGION_NAME=GRA test -f ~/openrc.sh || { echo "ERROR: ~/openrc.sh not found, exiting."; exit 1; }
test -f ~/duplicity_password.sh || { echo "ERROR: ~/duplicity_password.sh not found, exiting."; exit 1; } source ~/openrc.sh
source ~/duplicity_password.sh export OS_REGION_NAME=GRA
test -f ~/duplicity_password.sh || { echo "ERROR: ~/duplicity_password.sh not found, exiting."; exit 1; }
sudo docker image inspect duplicity:latest &> /dev/null ||{ echo "ERROR: duplicity:latest image not found, exiting."; exit 1; } source ~/duplicity_password.sh
rm -rf ~/build sudo docker image inspect duplicity:latest &> /dev/null ||{ echo "ERROR: duplicity:latest image not found, exiting."; exit 1; }
mkdir -p ~/build
for name in docker-mysql rm -rf ~/build
do mkdir -p ~/build
sudo -E docker run --rm -e SWIFT_USERNAME=$OS_USERNAME \ for name in docker-mysql
-e SWIFT_PASSWORD=$OS_PASSWORD \ do
-e SWIFT_AUTHURL=$OS_AUTH_URL \ sudo -E docker run --rm -e SWIFT_USERNAME=$OS_USERNAME \
-e SWIFT_AUTHVERSION=$OS_IDENTITY_API_VERSION \ -e SWIFT_PASSWORD=$OS_PASSWORD \
-e SWIFT_TENANTNAME=$OS_TENANT_NAME \ -e SWIFT_AUTHURL=$OS_AUTH_URL \
-e SWIFT_REGIONNAME=$OS_REGION_NAME \ -e SWIFT_AUTHVERSION=$OS_IDENTITY_API_VERSION \
-e PASSPHRASE=$PASSPHRASE \ -e SWIFT_TENANTNAME=$OS_TENANT_NAME \
--name backup-restore -v ~/build:/mnt/build --entrypoint /bin/bash duplicity:latest \ -e SWIFT_REGIONNAME=$OS_REGION_NAME \
-c "duplicity restore --name bootstrap --file-to-restore ${name}.tar.gz swift://bootstrap /mnt/build/${name}.tar.gz" -e PASSPHRASE=$PASSPHRASE \
tar -xzf ~/build/${name}.tar.gz -C ~/build/ --name backup-restore -v ~/build:/mnt/build --entrypoint /bin/bash duplicity:latest \
done -c "duplicity restore --name bootstrap --file-to-restore ${name}.tar.gz swift://bootstrap /mnt/build/${name}.tar.gz"
tar -xzf ~/build/${name}.tar.gz -C ~/build/
unset VERSION_MYSQL done
DIRECTORY=$(pwd)
cd ~/build/docker-mysql; export VERSION_MYSQL=$(git show-ref --head| head -1 | cut -f 1|cut -c -10); cd $DIRECTORY unset VERSION_MYSQL
DIRECTORY=$(pwd)
cd ~/build/docker-mysql; export VERSION_MYSQL=$(git show-ref --head| head -1 | cut -f 1|cut -c -10); cd $DIRECTORY
else
unset VERSION_MYSQL
export VERSION_MYSQL=$(git ls-remote https://git.scimetis.net/yohan/docker-mysql.git| head -1 | cut -f 1|cut -c -10)
rm -rf ~/build
mkdir -p ~/build
git clone https://git.scimetis.net/yohan/docker-mysql.git ~/build/docker-mysql
fi
sudo docker build -t mysql-server:$VERSION_MYSQL ~/build/docker-mysql sudo docker build -t mysql-server:$VERSION_MYSQL ~/build/docker-mysql