Added more error messages.
This commit is contained in:
parent
687832542c
commit
0cae2c719a
@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
test -f ~/openrc.sh || exit 1
|
test -f ~/openrc.sh || { echo "ERROR: ~/openrc.sh not found, exiting."; exit 1; }
|
||||||
source ~/openrc.sh
|
source ~/openrc.sh
|
||||||
INSTANCE=$(~/env_py3/bin/openstack server show -c id --format value $(hostname))
|
INSTANCE=$(~/env_py3/bin/openstack server show -c id --format value $(hostname))
|
||||||
for VOLUME in reverse-proxy_conf reverse-proxy_conf_enabled reverse-proxy_letsencrypt
|
for VOLUME in reverse-proxy_conf reverse-proxy_conf_enabled reverse-proxy_letsencrypt
|
||||||
@ -16,6 +16,7 @@ sudo chown root. crontab
|
|||||||
sudo chmod 644 crontab
|
sudo chmod 644 crontab
|
||||||
|
|
||||||
export OS_REGION_NAME=GRA
|
export OS_REGION_NAME=GRA
|
||||||
|
test -f ~/duplicity_password.sh || { echo "ERROR: ~/duplicity_password.sh not found, exiting."; exit 1; }
|
||||||
source ~/duplicity_password.sh
|
source ~/duplicity_password.sh
|
||||||
|
|
||||||
sudo docker image inspect duplicity:latest &> /dev/null || { echo "ERROR: duplicity:latest image not found, exiting."; exit 1; }
|
sudo docker image inspect duplicity:latest &> /dev/null || { echo "ERROR: duplicity:latest image not found, exiting."; exit 1; }
|
||||||
|
Loading…
Reference in New Issue
Block a user