vagrant/plugins/hosts/arch/host.rb

12 lines
195 B
Ruby
Raw Normal View History

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
end
end
end