2014-02-15 15:50:11 +11:00

10 lines
217 B
Ruby

module VagrantPlugins
module GuestCoreOS
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
machine.communicate.test("cat /etc/os-release | grep ID=coreos")
end
end
end
end