fix editor mistake

This commit is contained in:
Kjeld Schouten-Lebbing 2022-12-27 16:38:24 +01:00
parent 5e675ab7ae
commit b7e055258d

View File

@ -57,7 +57,7 @@ do
data_name=$(echo "$pvc" | awk '{print $3}')
volume_name=$(echo "$pvc" | awk '{print $4}')
full_path=$(zfs list -t filesystem -r "$pool"/ix-applications/releases/"$app"/volumes -o name -H | grep "$volume_name")
if ! zfs set mountpoint=/heavyscript/"$data_name" "$full_path" ; then
if ! zfs set mountpoint=/truetool/"$data_name" "$full_path" ; then
echo "Error: Failed to mount $app"
exit 1
else