vagrant-cachier-ng/lib/vagrant-cachier/cap/redhat/yum_cache_dir.rb
Roman Mohr fad6bbf6a0 Yum is replaced by DNF in newer Fedora releases
Check if yum is really present on a 'redhat' machine.  Only if it is,
enable the Yum bucket. The same for DNF since older versions of CentOS
and Fedora do not ship DNF.
2016-09-26 14:03:23 +02:00

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