vagrant-cachier-ng/lib/vagrant-cachier/cap/fedora/dnf_cache_dir.rb
Lalatendu Mohanty 081c809fc3 Fixes Issue #163: Modification for DNF package manager
Dnf is the new package manager for Fedora.
And it is the default package manager for F22 and F23

Signed-off-by: Lalatendu Mohanty <lmohanty@redhat.com>
2015-11-16 02:45:12 +05:30

14 lines
226 B
Ruby

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