| Vagrant.configure("2") do |config| |
| config.vm.box = "base" |
| config.vm.synced_folder "/usr/local/autotest", "/usr/local/autotest", type: "rsync", |
| owner: "chromoes-test", group: "root", |
| rsync__exclude: ["site-packages/", "logs/", "results/", "shadow_config.ini", ".git/", "chromeos-admin/", "*.box"] |
| config.vm.provision :puppet do |puppet| |
| puppet.manifests_path = "%(manifest_path)s" |
| puppet.manifest_file = "nodes.pp" |
| puppet.module_path = "%(module_path)s" |
| puppet.options = "--verbose --debug " |
| puppet.facter = { |
| "is_vagrant" => "1", |
| "server_type" => "core-cluster", |
| } |
| end |
| end |