vagrant-cachier-ng/lib/vagrant-cachier/bucket/apt.rb
Teemu Matilainen 8203161d6d Don't error out if a bucket is configured for a non-capable guest
If a bucket is configured (globally), just print an info level message
when configuring a non-capable guest machine.
2013-08-01 22:35:12 +03:00

34 lines
945 B
Ruby

module VagrantPlugins
module Cachier
class Bucket
class Apt < Bucket
def self.capability
:apt_cache_dir
end
def install
machine = @env[:machine]
guest = machine.guest
if guest.capability?(:apt_cache_dir)
guest_path = guest.capability(:apt_cache_dir)
@env[:cache_dirs] << guest_path
machine.communicate.tap do |comm|
comm.execute("mkdir -p /tmp/vagrant-cache/#{@name}")
unless comm.test("test -L #{guest_path}")
comm.sudo("rm -rf #{guest_path}")
comm.sudo("mkdir -p `dirname #{guest_path}`")
comm.sudo("ln -s /tmp/vagrant-cache/#{@name} #{guest_path}")
end
end
else
@env[:ui].info "Skipping APT cache bucket as the guest machine does not support it"
end
end
end
end
end
end