mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
e973c856c6
I used CPack to generate deb package files from the CMake "install" target. What this means is, whatever would get installed my "make install" will get installed by the deb. "make package" on ubuntu will generate a file named: `osquery-$VERSION-$DISTRO.$ARCH.deb` Consider the following example: ``` root@vagrant-ubuntu-trusty-64:/vagrant/build# dpkg --info osquery-0.0.1-trusty.amd64.deb new debian package, version 2.0. size 11311330 bytes: control archive=350 bytes. 207 bytes, 9 lines control 102 bytes, 2 lines md5sums Package: osquery Version: 0.0.1 Section: devel Priority: optional Architecture: amd64 Installed-Size: 43369 Maintainer: marpaia@fb.com Description: osquery is an operating system instrumentation toolchain. ```
21 lines
365 B
Ruby
21 lines
365 B
Ruby
Vagrant.configure("2") do |config|
|
|
|
|
config.vm.provider "virtualbox" do |v|
|
|
v.memory = 4096
|
|
v.cpus = 2
|
|
end
|
|
|
|
config.vm.define "ubuntu14" do |box|
|
|
box.vm.box = "ubuntu/trusty64"
|
|
end
|
|
|
|
config.vm.define "ubuntu12" do |box|
|
|
box.vm.box = "ubuntu/precise64"
|
|
end
|
|
|
|
config.vm.define "centos" do |box|
|
|
box.vm.box = "chef/centos-6.5"
|
|
end
|
|
|
|
end
|