Auto-creation of volumes mountpoint with sudo...

This commit is contained in:
yohan 2020-02-26 18:45:04 +01:00
parent 6e7ab8ffab
commit 68974a9717

View File

@ -12,7 +12,7 @@ source ~/openrc.sh
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
do
mkdir -p /mnt/volumes/${VOLUME}
sudo mkdir -p /mnt/volumes/${VOLUME}
if ! mountpoint -q /mnt/volumes/${VOLUME}
then
VOLUME_ID=$(/home/yohan/env_py3/bin/openstack volume show ${VOLUME} -c id --format value)