2012-04-19 04:23:25 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestGentoo
|
2013-04-04 19:09:40 +00:00
|
|
|
class Guest < Vagrant.plugin("2", :guest)
|
2013-04-04 04:47:57 +00:00
|
|
|
def detect?(machine)
|
2013-08-03 17:55:17 +00:00
|
|
|
machine.communicate.test("grep Gentoo /etc/gentoo-release")
|
2013-04-04 04:47:57 +00:00
|
|
|
end
|
2010-12-08 20:30:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|