Found the issue!!!
It was one of the postdownload scripts that we use
if [ $osid == "5" -o $osid == "6" -o $osid == "7" ]; then #only handling Win7/8/8.1
clearScreen;
mkdir /ntfs &>/dev/null
ntfs-3g -o force,rw $part /ntfs #mount image (remember this is mounting partition [U][B]after[/B][/U] new image is deployed)
mkdir /fog &>/dev/null
mount -o nolock,proto=tcp $storageip:/fog/ /fog #this is a share created on server under /fog which contains drivers, software etc.. (just add /fog to exports but you could use existing location i.e. /images and if you do, do not need to do this mount as /images is still mounted at this point)
dots "Mounting Device";
if [ "$?" = "0" ]; then
echo "Done";
#'. ${postdownpath}fog.drivers # run fog.drivers script
. ${postdownpath}fog.ad # then run fog.ad ... you get the jist
#'. ${postdownpath}fog.snapins
umount /ntfs; # unmount when all is done :-)
else
echo "Failed To Mount Device";
sleep 30;
fi
fi