Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add optional support for vagrant-cachier plugin #2

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/fdroid.texi
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ Ruby (debian packages ruby and rubygems)
Vagrant (unpackaged) Be sure to use 1.3.x because 1.4.x is completely broken
(at the time of writing, the forthcoming 1.4.3 might work)
@item
vagrant-cachier plugin (unpackaged): `vagrant plugin install vagrant-cachier`
@item
Paramiko (debian package python-paramiko)
@item
Imaging (debian package python-imaging)
Expand Down
4 changes: 4 additions & 0 deletions makebuildserver
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,10 @@ for f, src, shasum in cachefiles:
vagrantfile = """
Vagrant::Config.run do |config|

if Vagrant.has_plugin?("vagrant-cachier")
config.cache.scope = :box
end

config.vm.box = "{0}"
config.vm.box_url = "{1}"

Expand Down