From cc6b11c95bd13af85d8581ca233dd8a581d0ffa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mois=C3=A9s=20Guimar=C3=A3es?= Date: Mon, 11 Aug 2014 11:27:57 -0700 Subject: [PATCH] vagrant recipe to get a linux machine for testing. The virtual machine is provided by hashicorp (the company that makes vagrant) and is an Ubuntu Precise 64 The provisioning script that runs in the first boot of the machine will copy and setup a synchronize script so you don't have to run ./autogen.sh and ./configure every time to build in a different OS and you can also build and run on both (guest and host) at the same time. The ./pull_to_vagrant.sh script should be called at least once before building cyassl so you get all the changes from you host machine. --- Vagrantfile | 29 +++++++++++++++++++++++++++++ pull_to_vagrant.sh | 11 +++++++++++ 2 files changed, 40 insertions(+) create mode 100644 Vagrantfile create mode 100755 pull_to_vagrant.sh diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 000000000..4117f4802 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,29 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +$setup = <