2016-06-06 11:58:33 -04:00

10 lines
213 B
Ruby

module VagrantPlugins
module GuestMint
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
machine.communicate.test("cat /etc/issue | grep 'Linux Mint'")
end
end
end
end