vagrant/plugins/guests/debian/guest.rb

10 lines
211 B
Ruby
Raw Normal View History

module VagrantPlugins
module GuestDebian
2013-04-04 06:18:12 +00:00
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
2015-09-28 07:08:20 +00:00
machine.communicate.test("cat /etc/issue | grep 'Debian'")
end
end
end
end