diff options
author | 2014-10-16 21:48:00 +0100 | |
---|---|---|
committer | 2014-10-16 21:48:00 +0100 | |
commit | 168d66d2f7ddfea561494bca58eb387910b3c05a (patch) | |
tree | bb4299fab08e86849138830a085d486e9dd51932 | |
parent | Keep emerge quiet (diff) | |
download | ruby-tinderbox-168d66d2f7ddfea561494bca58eb387910b3c05a.tar.gz ruby-tinderbox-168d66d2f7ddfea561494bca58eb387910b3c05a.tar.bz2 ruby-tinderbox-168d66d2f7ddfea561494bca58eb387910b3c05a.zip |
Support syntax for aws rsync and vagrant rsync
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile index fdca5a6..40e695c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,7 +1,7 @@ Vagrant.configure(2) do |config| config.vm.box = 'gentoo-amd64' config.vm.box_url = 'gentoo-amd64-aws-1412531813.box' - config.vm.synced_folder '.', '/vagrant', type: 'rsync', :rsync_excludes => ['gentoo-x86/', 'web/'] + config.vm.synced_folder '.', '/vagrant', type: 'rsync', rsync__exclude: ['gentoo-x86/', 'web/'], :rsync_excludes => ['gentoo-x86/', 'web/'] config.vm.provider :aws do |aws, override| aws.instance_type = 't2.micro' aws.region = 'eu-west-1' |