blob: 747e60b775ebb136f4368fdde5b7367c3751f0d7 [file] [log] [blame]
Prashanth Balasubramanianfe9e1e22014-11-13 20:05:10 -08001Vagrant.configure("2") do |config|
2 config.vm.box = "base"
3 config.vm.synced_folder "/usr/local/autotest", "/usr/local/autotest", type: "rsync",
4 owner: "chromoes-test", group: "root",
5 rsync__exclude: ["site-packages/", "logs/", "results/", "shadow_config.ini", ".git/", "chromeos-admin/", "*.box"]
6 config.vm.provision :puppet do |puppet|
7 puppet.manifests_path = "%(manifest_path)s"
8 puppet.manifest_file = "nodes.pp"
9 puppet.module_path = "%(module_path)s"
10 puppet.options = "--verbose --debug "
11 puppet.facter = {
12 "is_vagrant" => "1",
13 "server_type" => "core-cluster",
14 }
15 end
16end