mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-22 01:11:43 -05:00
9 lines
216 B
Ruby
9 lines
216 B
Ruby
module VagrantPlugins
|
|
module GuestAmazon
|
|
class Guest < Vagrant.plugin("2", :guest)
|
|
def detect?(machine)
|
|
machine.communicate.test("grep 'Amazon Linux' /etc/os-release")
|
|
end
|
|
end
|
|
end
|
|
end
|