Prashanth Balasubramanian | fe9e1e2 | 2014-11-13 20:05:10 -0800 | [diff] [blame] | 1 | Vagrant.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 |
| 16 | end |