vagrant-cachier-ng/lib/vagrant-cachier/cap/suse/zypper_cache_dir.rb
2013-11-05 15:10:00 +01:00

15 lines
312 B
Ruby

module VagrantPlugins
module Cachier
module Cap
module SuSE
module ZypperCacheDir
def self.zypper_cache_dir(machine)
# TODO: Find out if there is a config file we can read from
'/var/cache/zypp/packages'
end
end
end
end
end
end