vagrant-cachier-ng/lib/vagrant-cachier/cap/redhat/dnf_cache_dir.rb
raghavendra talur 0af933d68a Add dnf bucket
This patchset adds dnf as a bucket.
Adds the keepcache line if it is not found in dnf.conf.

Signed-off-by: raghavendra talur <raghavendra.talur@gmail.com>
2015-09-06 17:53:42 +05:30

14 lines
226 B
Ruby

module VagrantPlugins
module Cachier
module Cap
module RedHat
module DnfCacheDir
def self.dnf_cache_dir(machine)
'/var/cache/dnf'
end
end
end
end
end
end