vagrant-cachier-ng/lib/vagrant-cachier/cap/redhat/yum_cache_dir.rb

20 lines
522 B
Ruby

module VagrantPlugins
module Cachier
module Cap
module RedHat
module YumCacheDir
def self.yum_cache_dir(machine)
yum_cache_dir = nil
machine.communicate.tap do |comm|
# In case yum is only forwarding to dnf do not cache
return unless not comm.test('yum --version 2>&1 | grep /usr/bin/dnf')
yum_cache_dir = '/var/cache/yum'
end
return yum_cache_dir
end
end
end
end
end
end