2012-04-19 04:23:25 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestDebian
|
2013-04-04 06:18:12 +00:00
|
|
|
class Guest < Vagrant.plugin("2", :guest)
|
2013-04-04 04:47:57 +00:00
|
|
|
def detect?(machine)
|
2015-02-20 19:15:05 +00:00
|
|
|
machine.communicate.test("cat /etc/issue | grep 'Debian' | grep -v '8'")
|
2013-04-04 04:47:57 +00:00
|
|
|
end
|
2011-01-09 21:19:50 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|