2012-05-23 23:03:14 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
2012-04-19 05:20:45 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module HostArch
|
2014-01-08 04:53:39 +00:00
|
|
|
class Host < Vagrant.plugin("2", :host)
|
|
|
|
def detect?(env)
|
2012-10-26 18:15:58 +00:00
|
|
|
File.exist?("/etc/arch-release")
|
|
|
|
end
|
2011-04-19 16:35:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|