10 lines
212 B
Ruby
10 lines
212 B
Ruby
module VagrantPlugins
|
|
module GuestGentoo
|
|
class Guest < Vagrant.plugin("2", :guest)
|
|
def detect?(machine)
|
|
machine.communicate.test("grep Gentoo /etc/gentoo-release")
|
|
end
|
|
end
|
|
end
|
|
end
|