Auto-creation of volumes mountpoint with sudo...

This commit is contained in:
yohan 2020-02-26 18:42:45 +01:00
parent 8e467b7509
commit 640163f4b3

View File

@ -1,7 +1,7 @@
#!/bin/bash
source ~/openrc.sh
INSTANCE=$(/home/yohan/env_py3/bin/openstack server show -c id --format value $(hostname))
mkdir -p /mnt/volumes/onlyoffice_data
sudo mkdir -p /mnt/volumes/onlyoffice_data
if ! mountpoint -q /mnt/volumes/onlyoffice_data
then
VOLUME_ID=$(/home/yohan/env_py3/bin/openstack volume show onlyoffice_data -c id --format value)
@ -9,7 +9,7 @@ then
sleep 3
sudo mount /dev/disk/by-id/*${VOLUME_ID:0:20} /mnt/volumes/onlyoffice_data
fi
mkdir -p /mnt/volumes/onlyoffice_log
sudo mkdir -p /mnt/volumes/onlyoffice_log
if ! mountpoint -q /mnt/volumes/onlyoffice_log
then
VOLUME_ID=$(/home/yohan/env_py3/bin/openstack volume show onlyoffice_log -c id --format value)