Skip to content

Instantly share code, notes, and snippets.

@rmanly
Created April 8, 2016 14:16
Show Gist options
  • Save rmanly/28033bd99a1cd30bb66c6c3e2bfa7e63 to your computer and use it in GitHub Desktop.
Save rmanly/28033bd99a1cd30bb66c6c3e2bfa7e63 to your computer and use it in GitHub Desktop.
Vagrantfile for working with osxcollector_output_filters in Wily
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/wily64"
config.vm.hostname = "osxcollector"
config.vm.provider "virtualbox" do |vb|
vb.memory = "2048"
end
config.vm.provision "shell", inline: <<-SHELL
sudo apt-get update
sudo apt-get install -y python-pip python-dev jq libffi-dev libssl-dev
sudo pip install tox virtualenv simplejson threat_intel tldextract mock flake8 pre-commit pyflakes testify
git clone https://github.com/Yelp/osxcollector_output_filters.git
cd osxcollector_output_filters
make test
SHELL
end
@rmanly
Copy link
Author

rmanly commented Apr 8, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment