diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2013-05-13 00:32:04 +0300 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2013-05-13 00:32:04 +0300 |
| commit | 84935bdd154e6a27789bf2d871ef8921be51fc1b (patch) | |
| tree | 81be51a4c0cec0a6a3abf76a01800aec05fc37e5 /Vagrantfile | |
| parent | d8a2ac898b0d6f42aadd0d490f52534f25fa8b98 (diff) | |
Initial Vagrantfile
Diffstat (limited to 'Vagrantfile')
| -rw-r--r-- | Vagrantfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..49c0968 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,17 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +$gnu_radio_bootstrap = <<SCRIPT +sudo apt-get update +sudo apt-get upgrade +sudo apt-get install build-essential git subversion +wget http://www.sbrac.org/files/build-gnuradio && chmod a+x ./build-gnuradio && ./build-gnuradio +SCRIPT + +Vagrant.configure("2") do |config| + config.vm.box = "precise32" + config.vm.box_url = "http://files.vagrantup.com/precise32.box" + + # run the basic GNU Radio bootstrap stuff + config.vm.provision :shell, :inline => $gnu_radio_bootstrap +end |
