vagrant/plugins/guests/debian/guest.rb

10 lines
225 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)
machine.communicate.test("cat /etc/issue | grep 'Debian' | grep -v '8'")
end
end
end
end