1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +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
commit 9513db0e55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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