Created
April 8, 2016 14:16
-
-
Save rmanly/28033bd99a1cd30bb66c6c3e2bfa7e63 to your computer and use it in GitHub Desktop.
Vagrantfile for working with osxcollector_output_filters in Wily
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/Yelp/osxcollector_output_filters