Skip to content

Instantly share code, notes, and snippets.

@chilcote
Created July 9, 2015 15:34
Show Gist options
  • Save chilcote/4abf81a0be65a675e7c2 to your computer and use it in GitHub Desktop.
Save chilcote/4abf81a0be65a675e7c2 to your computer and use it in GitHub Desktop.
osquery vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "osx104"
config.vm.synced_folder "./data", "/vagrant_data"
config.vm.provision "shell", inline: <<-SHELL
curl -s -O "https://osquery-packages.s3.amazonaws.com/darwin/osquery-1.4.5.pkg"
installer -pkg osquery-1.4.5.pkg -target /
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment