Class: Vagrant::Hosts::BSD
- Includes:
- Util, Util::Retryable
- Defined in:
- lib/vagrant/hosts/bsd.rb
Overview
Represents a BSD host, such as FreeBSD and Darwin (Mac OS X).
Direct Known Subclasses
Class Method Summary collapse
Instance Method Summary collapse
-
#create_vagrant_sudoers_policy ⇒ Object
Create the sudoers.d directory, update /etc/sudoers, and create /etc/sudoers.d/vagrant https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man5/sudoers.5.html.
-
#initialize(*args) ⇒ BSD
constructor
A new instance of BSD.
- #nfs? ⇒ Boolean
- #nfs_export(id, ip, folders) ⇒ Object
- #nfs_prune(valid_ids) ⇒ Object
Methods included from Util::Retryable
Constructor Details
#initialize(*args) ⇒ BSD
Returns a new instance of BSD.
22 23 24 25 26 27 28 |
# File 'lib/vagrant/hosts/bsd.rb', line 22 def initialize(*args) super @logger = Log4r::Logger.new("vagrant::hosts::bsd") @nfs_restart_command = "sudo nfsd restart" @nfs_exports_template = "nfs/exports" end |
Class Method Details
.match? ⇒ Boolean
12 13 14 |
# File 'lib/vagrant/hosts/bsd.rb', line 12 def self.match? Util::Platform.darwin? || Util::Platform.bsd? end |
.precedence ⇒ Object
16 17 18 19 20 |
# File 'lib/vagrant/hosts/bsd.rb', line 16 def self.precedence # Set a lower precedence because this is a generic OS. We # want specific distros to match first. 2 end |
Instance Method Details
#create_vagrant_sudoers_policy ⇒ Object
Create the sudoers.d directory, update /etc/sudoers, and create /etc/sudoers.d/vagrant https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man5/sudoers.5.html
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/vagrant/hosts/bsd.rb', line 32 def create_vagrant_sudoers_policy sudoersd_dir = '/etc/sudoers.d' # This block should only run the first time vagrant is run on a new host unless File.exists? "#{sudoersd_dir}/vagrant" sudoers_file = '/etc/sudoers' sudoers_include = '\n#includedir /etc/sudoers.d' vagrant_sudoersd_filename = "#{sudoersd_dir}/vagrant" # We cannot use heredoc since echo doesn't handle the multiline input properly content = "# Allow passwordless startup of Vagrant when using NFS.\nCmnd_Alias VAGRANT_EXPORTS_ADD = /usr/bin/su root -c echo '*' >> /etc/exports\nCmnd_Alias VAGRANT_NFSD = /sbin/nfsd restart\nCmnd_Alias VAGRANT_EXPORTS_REMOVE = /usr/bin/sed -e /*/ d -ibak /etc/exports\n%staff ALL=(root) NOPASSWD: VAGRANT_EXPORTS_ADD, VAGRANT_NFSD, VAGRANT_EXPORTS_REMOVE\n" # To avoid breaking sudo, we must create this directory before updating /etc/sudoers @ui.info "creating #{sudoersd_dir}" result = system "sudo mkdir #{sudoersd_dir}" raise StandardError, "sudo mkdir #{sudoersd_dir} failed" unless result # Use backticks to capture stdout sudoers = `sudo cat #{sudoers_file}` unless sudoers.include? sudoers_include @ui.info "Adding '#{sudoers_include}' to #{sudoers_file}" result = system "echo '#{sudoers_include}' | sudo tee -a #{sudoers_file}" raise StandardError, "echo '#{sudoers_include}' | sudo tee -a #{sudoers_file} failed" unless result end @ui.info "Adding #{sudoersd_dir}/vagrant file" result = system "echo '#{content}' | sudo tee #{vagrant_sudoersd_filename}" raise StandardError, "echo '#{content}' | sudo tee #{vagrant_sudoersd_filename} failed" unless result @ui.info "Updating #{sudoersd_dir}/vagrant permissions to 0440" result = system "sudo chmod 0440 #{vagrant_sudoersd_filename}" raise StandardError, "sudo chmod 0440 #{vagrant_sudoersd_filename} failed" unless result end end |
#nfs? ⇒ Boolean
66 67 68 69 70 |
# File 'lib/vagrant/hosts/bsd.rb', line 66 def nfs? retryable(:tries => 10, :on => TypeError) do system("which nfsd > /dev/null 2>&1") end end |
#nfs_export(id, ip, folders) ⇒ Object
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/vagrant/hosts/bsd.rb', line 72 def nfs_export(id, ip, folders) output = TemplateRenderer.render(@nfs_exports_template, :uuid => id, :ip => ip, :folders => folders) # The sleep ensures that the output is truly flushed before any `sudo` # commands are issued. @ui.info I18n.t("vagrant.hosts.bsd.nfs_export") sleep 0.5 # First, clean up the old entry nfs_cleanup(id) # Output the rendered template into the exports output.split("\n").each do |line| 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(@nfs_restart_command) end |
#nfs_prune(valid_ids) ⇒ Object
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/vagrant/hosts/bsd.rb', line 97 def nfs_prune(valid_ids) return if !File.exist?("/etc/exports") @logger.info("Pruning invalid NFS entries...") output = false File.read("/etc/exports").lines.each do |line| if line =~ /^# VAGRANT-BEGIN: (.+?)$/ if valid_ids.include?($1.to_s) @logger.debug("Valid ID: #{$1.to_s}") else if !output # We want to warn the user but we only want to output once @ui.info I18n.t("vagrant.hosts.bsd.nfs_prune") output = true end @logger.info("Invalid ID, pruning: #{$1.to_s}") nfs_cleanup($1.to_s) end end end end |