fix: typo in vm import script

This commit is contained in:
Roni Väyrynen
2025-01-18 13:43:48 +02:00
parent 0cfd93d50a
commit 0048b0753e

View File

@@ -120,7 +120,7 @@ function NetworkSettings {
read -r -p "Netmask [255.255.255.0]: " netmask
netmask=${netmask:-255.255.255.0}
while ! [[ $netmask =~ $ipregex ]]; do
echo "Check gateway format"
echo "Check netmask format"
read -r -p "Netmask [255.255.255.0]: " netmask
netmask=${netmask:-255.255.255.0}
done