[vagrant-up] Re: Rsync on Windows

2014-04-28 Thread Ian Anderson Gray
I'm not sure how many Windows users there are in this group, but I thought I'd give a quick update... I managed to get rsync on Windows by installing cwRsync. I installed the free version using the instructions here - http://www.rsync.net/resources/howto/windows_rsync.html That didn't work,

Re: [vagrant-up] Re: Rsync on Windows

2014-04-28 Thread Alvaro Miranda Aguilera
usually those rsync came with an ssh utility , and you should use it as rsync -e 'path/to/ssh' try to use the rsync from command line and test i havent used the rsync sync from vagrant but as command line rsync i use this one http://www.opbyte.it/grsync/download.html take note it require to

[vagrant-up] Shell Provisioner not running in Multi VM, Multi Provisioner VagrantFile

2014-04-28 Thread Adam Mills
I am running vagrant 1.5.4 on Windows 7 64 bit. I have a vagrant file that configs multiple VM's One of the VM's uses a combination of Shell and Puppet provisioners However only the puppet provisioner runs, is this a know issue? config.vm.define test do |client| client.vm.box =

Re: [vagrant-up] Re: Rsync on Windows

2014-04-28 Thread Ian Anderson Gray
Are you referring to the guest OS or the host? I know the the guest (Ubuntu) has the ssh utility installed. Not sure about Windows. Unfortunately I don't really understand what I should be doing. Are you saying I need to configure rsync on Windows more? Or do I need to do something in my

Re: [vagrant-up] I am confused about public keys and vagrant...

2014-04-28 Thread Simon McCartney
You’ve lost me, where are private keys being used other than on the Vagrant host? The issue remains the same, how do you get a new key (or a key you specify) on to a vbox instance without first having a password for an existing account on the guest box or the private key for a public key in

Re: [vagrant-up] I am confused about public keys and vagrant...

2014-04-28 Thread Jason Harris
On Apr 28, 2014, at 5:32 PM, Simon McCartney si...@mccartney.ie wrote: You've lost me, where are private keys being used other than on the Vagrant host? There is no vagrant option config.ssh.public_key_path, there is however the vagrant option config.ssh.private_key_path. My question is I

Re: [vagrant-up] list all running Vagrant instances

2014-04-28 Thread Mitchell Hashimoto
Coming in Vagrant 1.6: http://www.vagrantup.com/blog/feature-preview-vagrant-1-6-global-status.html On Mon, Apr 28, 2014 at 12:04 PM, Christian Berendt bere...@b1-systems.de wrote: Is there a command/plugin to list all running Vagrant instances on a system? At the moment I have several

[vagrant-up] isolating website content in an own repository

2014-04-28 Thread Christian Berendt
Just want suggest/discuss to isolate/move the content of the website (everything in mitchellh/vagrant/website/www) into it's own repository. Christian. -- Christian Berendt Cloud Computing Solution Architect Mail: bere...@b1-systems.de B1 Systems GmbH Osterfeldstraße 7 / 85088 Vohburg /

[vagrant-up] configuring swap file size for centos

2014-04-28 Thread Phil Swenson
Is there anyway to specify swap file size for a centos box? config.vm.box_url = https://github.com/2creatives/vagrant-centos/releases/download/v6.5.1/centos65-x86_64-20131205.box; I don't see one, wondering if I'm missing a setting? Or do I need to configure it via command line or chef or

Re: [vagrant-up] configuring swap file size for centos

2014-04-28 Thread Alvaro Miranda Aguilera
what;s the output of grep -i swap /etc/fstab grep -i swap /proc/meminfo ? On Tue, Apr 29, 2014 at 10:43 AM, Phil Swenson phil.swen...@gmail.comwrote: Is there anyway to specify swap file size for a centos box? config.vm.box_url =

Re: [vagrant-up] Re: Rsync on Windows

2014-04-28 Thread Alvaro Miranda Aguilera
Ah, assumptions, the mother of all the problems, I did assume you will understand. :) Let me go back one step. rsync, rsync is a tool that can be used local or remote. for local, you use rsync source destination, done for remote, you have 2 options rsync.remote.1 Use an rsync daemon, quite

[vagrant-up] Use Vagrant to manage a running VM without importing ?? will work?

2014-04-28 Thread Alvaro Miranda Aguilera
Hello, I haven't tested this yet, but I am foreseen it wont work.. I have a bunch of big virtualmachines appliances that came in .ova format this VM are created by Oracle, so at import there is an EULA you need to accept, and then the vm will be imported and all ok. From here, normal process

Re: [vagrant-up] Shell Provisioner not running in Multi VM, Multi Provisioner VagrantFile

2014-04-28 Thread Adam Mills
Thankyou for the second set of eyes! It's the other way around, the puppet provisioner should have been using the currently scoped client object not config Copy and Paste programming :) On Monday, April 28, 2014 9:27:38 PM UTC-4, Alvaro Miranda Aguilera wrote: On Tue, Apr 29, 2014 at 2:43 AM,