diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2013-05-13 11:35:55 +0300 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2013-05-13 11:35:55 +0300 |
| commit | 16e3abada49b5a97ff94e2afeacebad459f9f214 (patch) | |
| tree | cd0294903e913e341b8bc4677de9723c3ca8a248 | |
| parent | 7439ea728fac777596b99ec83da6903010c4c291 (diff) | |
Initial chef provisioning
| -rw-r--r-- | Vagrantfile | 5 | ||||
| -rw-r--r-- | cookbooks/gnuradio/recipes/default.rb | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile index 45336a6..1ef4eb5 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -13,6 +13,7 @@ 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 + config.vm.provision :chef_solo do |chef| + chef.add_recipe "gnuradio" + end end diff --git a/cookbooks/gnuradio/recipes/default.rb b/cookbooks/gnuradio/recipes/default.rb new file mode 100644 index 0000000..e97c5fc --- /dev/null +++ b/cookbooks/gnuradio/recipes/default.rb @@ -0,0 +1,3 @@ +package 'build-essential' +package 'git' +package 'subversion' |
