Sha256: 9d64677397e30939d1d53c1387ce0a5e9d777beadbd61f2d2eb632ade8e6f120
Contents?: true
Size: 840 Bytes
Versions: 34
Compression:
Stored size: 840 Bytes
Contents
require "vagrant" module VagrantPlugins module HostBSD class Plugin < Vagrant.plugin("2") name "BSD host" description "BSD host support." host("bsd") do require File.expand_path("../host", __FILE__) Host end host_capability("bsd", "nfs_export") do require_relative "cap/nfs" Cap::NFS end host_capability("bsd", "nfs_exports_template") do require_relative "cap/nfs" Cap::NFS end host_capability("bsd", "nfs_installed") do require_relative "cap/nfs" Cap::NFS end host_capability("bsd", "nfs_prune") do require_relative "cap/nfs" Cap::NFS end host_capability("bsd", "nfs_restart_command") do require_relative "cap/nfs" Cap::NFS end end end end
Version data entries
34 entries across 31 versions & 6 rubygems