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

13 lines
235 B
Markdown
Raw Normal View History

2013-12-07 05:43:37 +00:00
# Pacman
2013-12-07 14:36:03 +00:00
Used by Arch Linux, will get configured under guest's `/var/cache/pacman/pkg`.
To manually enable it:
2013-12-07 05:43:37 +00:00
```ruby
Vagrant.configure("2") do |config|
config.vm.box = 'some-arch-linux-box'
config.cache.enable :pacman
end
```