vagrant-cachier-ng/lib/vagrant-cachier/cap/suse/zypper_cache_dir.rb

15 lines
312 B
Ruby
Raw Normal View History

2013-11-05 14:00:39 +00:00
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