Class: VagrantDNS::Installers::Mac

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-dns/installers/mac.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(tmp_path, install_path = "/etc/resolver") ⇒ Mac

Returns a new instance of Mac.



6
7
8
# File 'lib/vagrant-dns/installers/mac.rb', line 6

def initialize(tmp_path, install_path = "/etc/resolver")
  self.tmp_path, self.install_path = tmp_path, install_path
end

Instance Attribute Details

#install_pathObject

Returns the value of attribute install_path.



4
5
6
# File 'lib/vagrant-dns/installers/mac.rb', line 4

def install_path
  @install_path
end

#tmp_pathObject

Returns the value of attribute tmp_path.



4
5
6
# File 'lib/vagrant-dns/installers/mac.rb', line 4

def tmp_path
  @tmp_path
end

Instance Method Details

#install!Object



10
11
12
13
14
15
16
17
# File 'lib/vagrant-dns/installers/mac.rb', line 10

def install!
  require 'fileutils'

  `sudo mkdir -p #{install_path}`
  registered_resolvers.each do |resolver|
    `sudo ln -sf #{resolver} #{install_path}`
  end
end

#registered_resolversObject



28
29
30
# File 'lib/vagrant-dns/installers/mac.rb', line 28

def registered_resolvers
  Dir[File.join(tmp_path, "resolver", "*")]
end

#uninstall!Object



19
20
21
22
23
24
25
26
# File 'lib/vagrant-dns/installers/mac.rb', line 19

def uninstall!
  require 'fileutils'

  registered_resolvers.each do |r|
    installed_resolver = File.join(install_path, File.basename(r))
    `sudo rm -rf #{installed_resolver}`
  end
end