vagrant/plugins/guests/redhat/guest.rb

10 lines
204 B
Ruby
Raw Normal View History

module VagrantPlugins
module GuestRedHat
2013-04-04 19:09:40 +00:00
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
machine.communicate.test("cat /etc/redhat-release")
end
end
end
end