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