Add rake task to package a minimal LXC box

This commit is contained in:
Fabio Rehm 2013-02-28 00:16:24 -03:00
parent f40d3a1a96
commit a579f04bce
3 changed files with 7 additions and 0 deletions

2
.gitignore vendored
View file

@ -21,3 +21,5 @@ doc/
.vagrant
/cache
/dummy-ubuntu-cloudimg.box

View file

@ -0,0 +1 @@
{"provider":"lxc"}

View file

@ -0,0 +1,4 @@
desc 'Packages a dummy Vagrant box to be used during development'
task :package_dummy_box do
sh 'cd dummy-box-files/ && tar -czf ../dummy-ubuntu-cloudimg.box ./*'
end