Sha256: 1ec73f05b1a292f236b0e02a7b1ccd0da071cbfd097a0852b92732d33883564e

Contents?: true

Size: 962 Bytes

Versions: 13

Compression:

Stored size: 962 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

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

Version data entries

13 entries across 9 versions & 2 rubygems

Version Path
vagrant-unbundled-2.2.5.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.4.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.3.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.2.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.2.0.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.1.4.0 plugins/hosts/bsd/plugin.rb
vagrant-unbundled-2.1.2.0 plugins/hosts/bsd/plugin.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/bsd/plugin.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/bsd/plugin.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/bsd/plugin.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/bsd/plugin.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/bsd/plugin.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/bsd/plugin.rb