Sha256: 7e59ccf6d6b2461a2b52e7c8068a7c06cb438c4a88658e3cacd838936d4dd17d
Contents?: true
Size: 701 Bytes
Versions: 32
Compression:
Stored size: 701 Bytes
Contents
require "vagrant" module VagrantPlugins module HostArch class Plugin < Vagrant.plugin("2") name "Arch host" description "Arch host support." host("arch", "linux") do require_relative "host" Host end host_capability("arch", "nfs_installed") do require_relative "cap/nfs" Cap::NFS end # Linux-specific helpers we need to determine paths that can # be overriden. host_capability("arch", "nfs_check_command") do require_relative "cap/nfs" Cap::NFS end host_capability("arch", "nfs_start_command") do require_relative "cap/nfs" Cap::NFS end end end end
Version data entries
32 entries across 29 versions & 6 rubygems