12 lines
195 B
Ruby
12 lines
195 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module HostArch
|
|
class Host < Vagrant.plugin("2", :host)
|
|
def detect?(env)
|
|
File.exist?("/etc/arch-release")
|
|
end
|
|
end
|
|
end
|
|
end
|