#!/bin/bash

# Call the SM backend python program to reset the locks on all the VDIs that were on the
# host that has been declared dead

HOSTUUID=$2
REASON=$4

# Only reset the VDIs if the host is actually fenced!
if [ ! $REASON = "fenced" ]; then
  exit 0
fi

echo Resetting VDIs on host $HOSTUUID
IFS=","
for i in `xe pbd-list host-uuid=$HOSTUUID --minimal`
do
   SR=`xe pbd-param-get uuid=$i param-name=sr-uuid`  
   "@OPTDIR@/sm/resetvdis.py" $HOSTUUID $SR
done
