1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-08-24 17:49:28 +03:00

M #: Fix FC clean script

This commit is contained in:
Ruben S. Montero
2020-05-26 11:51:55 +02:00
committed by GitHub

View File

@ -65,7 +65,7 @@ fi
# Check $VM_NAME have the right format
regex='^one-[0-9]+$'
if ! [[ "$VM_NAME" ~= $regex ]]; then
if ! [[ "$VM_NAME" =~ $regex ]]; then
exit -1
fi