mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
Fix typo in ssvm check script (#8191)
This commit is contained in:
parent
3c7c75bacf
commit
8f39087377
@ -103,10 +103,10 @@ else
|
|||||||
echo "Verifying if we can at least ping the storage"
|
echo "Verifying if we can at least ping the storage"
|
||||||
STORAGE_ADDRESSES=`grep "secondaryStorageServerAddress" $CMDLINE | sed -E 's/.*secondaryStorageServerAddress=([^ ]*).*/\1/g'`
|
STORAGE_ADDRESSES=`grep "secondaryStorageServerAddress" $CMDLINE | sed -E 's/.*secondaryStorageServerAddress=([^ ]*).*/\1/g'`
|
||||||
|
|
||||||
if [[ -z "$STORAGE_ADDRESS" ]]
|
if [[ -z "$STORAGE_ADDRESSES" ]]
|
||||||
then
|
then
|
||||||
STORAGE_NETWORK_GATEWAY=`grep "storagegateway" $CMDLINE | sed -E 's/.*storagegateway=([^ ]*).*/\1/g'`
|
STORAGE_NETWORK_GATEWAY=`grep "storagegateway" $CMDLINE | sed -E 's/.*storagegateway=([^ ]*).*/\1/g'`
|
||||||
echo "Storage address is empty, trying to ping storage network gateway instead ($STORAGE_NETWORK_GATEWAY)"
|
echo "Storage address list is empty, trying to ping storage network gateway instead ($STORAGE_NETWORK_GATEWAY)"
|
||||||
ping -c 2 $STORAGE_NETWORK_GATEWAY
|
ping -c 2 $STORAGE_NETWORK_GATEWAY
|
||||||
if [ $? -eq 0 ]
|
if [ $? -eq 0 ]
|
||||||
then
|
then
|
||||||
@ -118,7 +118,7 @@ else
|
|||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
echo "Storage address(s): $STORAGE_ADDRESSES, trying to ping"
|
echo "Storage address(s): $STORAGE_ADDRESSES, trying to ping"
|
||||||
STORAGE_ADDRESS_LIST=$(echo $STORAGE_ADDRESSES | tr ",")
|
STORAGE_ADDRESS_LIST=$(echo $STORAGE_ADDRESSES | tr "," "\n")
|
||||||
for STORAGE_ADDRESS in $STORAGE_ADDRESS_LIST
|
for STORAGE_ADDRESS in $STORAGE_ADDRESS_LIST
|
||||||
do
|
do
|
||||||
echo "Pinging storage address: $STORAGE_ADDRESS"
|
echo "Pinging storage address: $STORAGE_ADDRESS"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user