Sha256: 6e38f695600f36abcd6e48c8b6f9befeed62812d430f2d4220a9698ab1524c7b

Contents?: true

Size: 1.05 KB

Versions: 16

Compression:

Stored size: 1.05 KB

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

      host_capability("bsd", "resolve_host_path") do
        require_relative "cap/path"
        Cap::Path
      end

      host_capability("bsd", "set_ssh_key_permissions") do
        require_relative "cap/ssh"
        Cap::SSH
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 3 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/hosts/bsd/plugin.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.3.3.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.3.2.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.19.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.18.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.16.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.14.0 plugins/hosts/bsd/plugin.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.10.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.9.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.8.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.7.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.6.2 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.6.1 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.6.0 plugins/hosts/bsd/plugin.rb