Sha256: b918a07b6187d2c841ec0960f7b8c4f8c7f8f0f48db5b773fbdca0d1d4cacc14

Contents?: true

Size: 1.83 KB

Versions: 5

Compression:

Stored size: 1.83 KB

Contents

require 'vagrant/util/platform'

module Vagrant
  module Hosts
    # Represents a BSD host, such as FreeBSD and Darwin (Mac OS X).
    class BSD < Base
      include Util
      include Util::Retryable

      def self.distro_dispatch
        return self if Util::Platform.darwin? || Util::Platform.bsd?
      end

      def nfs?
        retryable(:tries => 10, :on => TypeError) do
          system("which nfsd > /dev/null 2>&1")
        end
      end

      def nfs_export(ip, folders)
        output = TemplateRenderer.render('nfs/exports',
                                         :uuid => env.vm.uuid,
                                         :ip => ip,
                                         :folders => folders)

        # The sleep ensures that the output is truly flushed before any `sudo`
        # commands are issued.
        env.ui.info I18n.t("vagrant.hosts.bsd.nfs_export.prepare")
        sleep 0.5

        output.split("\n").each do |line|
          # This should only ask for administrative permission once, even
          # though its executed in multiple subshells.
          line = line.gsub('"', '\"')
          system(%Q[sudo su root -c "echo '#{line}' >> /etc/exports"])
        end

        # We run restart here instead of "update" just in case nfsd
        # is not starting
        system("sudo nfsd restart")
      end

      def nfs_cleanup
        return if !File.exist?("/etc/exports")

        retryable(:tries => 10, :on => TypeError) do
          system("cat /etc/exports | grep 'VAGRANT-BEGIN: #{env.vm.uuid}' > /dev/null 2>&1")

          if $?.to_i == 0
            # Use sed to just strip out the block of code which was inserted
            # by Vagrant
            system("sudo sed -e '/^# VAGRANT-BEGIN: #{env.vm.uuid}/,/^# VAGRANT-END: #{env.vm.uuid}/ d' -ibak /etc/exports")
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
vagrantup-0.8.7 lib/vagrant/hosts/bsd.rb
vagrantup-0.8.6 lib/vagrant/hosts/bsd.rb
vagrant-0.8.7 lib/vagrant/hosts/bsd.rb
rvagrant-0.8.7.dev lib/vagrant/hosts/bsd.rb
vagrant-0.8.6 lib/vagrant/hosts/bsd.rb