# File lib/rudy/aws/ec2/volume.rb, line 156 156: def exists?(vol_id) 157: vol_id = Volumes.get_vol_id(vol_id) 158: vol = get(vol_id) 159: return false if vol.nil? 160: return false if vol.deleting? 161: !vol.nil? 162: end