2012-05-23 22:57:43 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
2012-04-19 04:23:25 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestArch
|
2013-04-04 18:39:58 +00:00
|
|
|
class Guest < Vagrant.plugin("2", :guest)
|
2013-04-04 04:47:57 +00:00
|
|
|
def detect?(machine)
|
|
|
|
machine.communicate.test("cat /etc/arch-release")
|
|
|
|
end
|
2011-07-27 21:24:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|