2016-06-06 22:22:34 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestAmazon
|
|
|
|
class Guest < Vagrant.plugin("2", :guest)
|
|
|
|
def detect?(machine)
|
2017-12-27 04:57:47 +00:00
|
|
|
machine.communicate.test("grep 'Amazon Linux' /etc/os-release")
|
2016-06-06 22:22:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|