mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-20 16:31:24 -05:00
11 lines
195 B
Ruby
11 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
|