vagrant-cachier-ng/docs/buckets/zypper.md

15 lines
354 B
Markdown
Raw Normal View History

2013-12-07 05:43:37 +00:00
# Zypper
2013-12-07 14:36:03 +00:00
Used by SuSE guests, will get configured under guest's `/var/cache/zypp/packages`. It will
also [make sure](lib/vagrant-cachier/bucket/zypper.rb#L20) that `keep-packages` is enabled
for all repositories.
To manually enable it:
2013-12-07 05:43:37 +00:00
```ruby
Vagrant.configure("2") do |config|
config.vm.box = 'some-suse-box'
config.cache.enable :zypper
end
```