lib/serverspec/setup.rb in serverspec-0.10.12 vs lib/serverspec/setup.rb in serverspec-0.10.13
- old
+ new
@@ -187,10 +187,10 @@
if find_vagrantfile
vagrant_list = `vagrant status`
list_of_vms = []
if vagrant_list != ''
vagrant_list.each_line do |line|
- if match = /([a-z]+[\s]+)(created|not created|poweroff|running|saved)[\s](\(virtualbox\)|\(vmware\))/.match(line)
+ if match = /([a-z_-]+[\s]+)(created|not created|poweroff|running|saved)[\s](\(virtualbox\)|\(vmware\))/.match(line)
list_of_vms << match[1].strip!
end
end
if list_of_vms.length == 1
@hostname = list_of_vms[0]