Re: [vagrant-up] error in sharred folder....

2016-09-15 Thread Alvaro Miranda Aguilera
On Thu, Sep 15, 2016 at 8:30 AM, SR wrote: > Failed to mount folders in Linux guest. This is usually because > the "vboxsf" file system is not available Hello The error is quite verbose. Failed to mount folders in Linux guest. This is usually because the "vboxsf" file system is not available

[vagrant-up] Dependency between vm's in development

2016-09-15 Thread Sean Farrow
Hi all, Within a local environment I have a windows vm, created with packer that depends on a Linux vm running Redis to function. Is there a way of telling vagrant that one vm depends on another? How have others solved the problem. In production this is fine, as we are using Terraform and this w

[vagrant-up] Re: Dependency between vm's in development

2016-09-15 Thread pixel fairy
On Thursday, September 15, 2016 at 2:31:30 AM UTC-7, Sean Farrow wrote: > > Hi all, > > > > Within a local environment I have a windows vm, created with packer that > depends on a Linux vm running Redis to function. > > Is there a way of telling vagrant that one vm depends on another? > > How ha

Re: [vagrant-up] Dependency between vm's in development

2016-09-15 Thread Alvaro Miranda Aguilera
Hello, Vagrantfile is read top to bottom. Virtualbox is not run on parallel, so you can try: say web requires db you can do db web and will work Thanks Alvaro. On Thu, Sep 15, 2016 at 11:31 AM, Sean Farrow < sean.far...@tendosolutions.com> wrote: > Hi all, > > > > Within a local environm

[vagrant-up] env for more friendly multi machine vagrant files

2016-09-15 Thread pixel fairy
Doing a lot of multi machine vagrant files, and having a few templates for them, got in the habbit of setting a prefix variable near the top. that way, if you already have a network with that prefix, or your running multiple similar vagrant files, you can just change that. turns out reading the

RE: [vagrant-up] Dependency between vm's in development

2016-09-15 Thread Sean Farrow
Hi, They are in separate files, in separate repositories. It looks like I’m going to have to write a tool—maybe an excuse to learn go! Is there any other solution, would this be something that would be wanted in vagrant? Cheers Sean. From: vagrant-up@googlegroups.com [mailto:vagrant-up@googlegr

[vagrant-up] Re: How would I convert these VBoxManage commands to vagrant?

2016-09-15 Thread Brian Gonzalez
You ever figure this out? On Monday, August 15, 2011 at 8:30:40 AM UTC-4, Bruno Bronosky wrote: > > My current method of distributing our dev environment is a link to an > OVA file and a script including these commands. I'd like to switch to > vagrant. I've been reading the vagrant code and it l

[vagrant-up] Re: Vagrant ssh error

2016-09-15 Thread SR
Additional information; Rameshs-MacBook-Pro:.ssh Ramesh$ vagrant ssh-config Host default HostName 127.0.0.1 User vagrant Port UserKnownHostsFile /dev/null StrictHostKeyChecking no PasswordAuthentication no IdentityFile /Users/Ramesh/lab_ansible/vag_cent7_1/.vagrant/.ssh/auth

[vagrant-up] env for more friendly multi machine vagrant files

2016-09-15 Thread Edward Evans
Very interesting, can you post examples of each? -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://

[vagrant-up] Need help with installing SqlServer during provision

2016-09-15 Thread Edward Evans
I'm on Windows 10 and using Hyper-V on one machine and VirtualBox on another and I'm trying to setup SqlServer during provisioning. I'm installing Developer edition so I can't use the methods to install Express edition. I tried just putting the files from the ISO in a Sql2014 folder and map w

[vagrant-up] Need help joining to domain during provision

2016-09-15 Thread Edward Evans
I am also having trouble adding the machine to the domain during provision. I am using a SHELL provisioner and running a BoxStarter script which has something like $computer = Get-WMIObject win32_computersystem $memberStatus = ($computer).domainrole $domainName = "myDomain.com" if ($memberStat

Re: [vagrant-up] Need help joining to domain during provision

2016-09-15 Thread Alvaro Miranda Aguilera
hello seems the script is failing on $pWord = ConvertTo-SecureString –String "Passw0rd!" –AsPlainText -Force seems is taking the asplaintext as part of the password check the encoding of the script, ie open it on plain notepad check the dash - are correct, sometimes windows editors change -- to

Re: [vagrant-up] Need help with installing SqlServer during provision

2016-09-15 Thread Alvaro Miranda Aguilera
hi. windows allow to mount the iso file, so you could explore that, to get a method that will work in both providers or you can just zip the required files and upload/download them an use them then delete ? On Thu, Sep 15, 2016 at 8:26 PM, Edward Evans wrote: > I'm on Windows 10 and using Hy

Re: [vagrant-up] Re: Vagrant ssh error

2016-09-15 Thread Alvaro Miranda Aguilera
hello can we go slowly on this one? in the commands you run the vagrant user doesnt exist in your host, seems you want to run those in the guest ? by default, vagrant on first start will try to change the keys to a more secure one what i could suggest is add config.ssh.insert_key = false on t

Re: [vagrant-up] Re: How would I convert these VBoxManage commands to vagrant?

2016-09-15 Thread Alvaro Miranda Aguilera
hello brian you did reply to a post from 2011 if you can share what you want to do, we can help too thanks alvaro On Thu, Sep 15, 2016 at 4:11 PM, Brian Gonzalez wrote: > You ever figure this out? > > On Monday, August 15, 2011 at 8:30:40 AM UTC-4, Bruno Bronosky wrote: >> >> My current metho

Re: [vagrant-up] env for more friendly multi machine vagrant files

2016-09-15 Thread Alvaro Miranda Aguilera
hello thi is is what use: #agent box (1..2).each do |i| vm_name = "agent#{i}" config.vm.define vm_name do |agent| agent.vm.box = "alvaro/oracle6-agent" agent.vm.hostname = vm_name ip="192.168.10.#{10+i}" agent.vm.network "private_network", ip: ip end end

[vagrant-up] Re: Vagrant ssh error

2016-09-15 Thread SR
As advised, I removed all the boxes appeared on my host machine. And created new box, and still the authentication failure happening. https://gist.github.com/ramesh4f/0da12c1e45860733b80671aee2df6ade#file-vagrant-creation-txt I added the below changes too `config.ssh.insert_key = false` . Pl

[vagrant-up] config.vm.synced_folder not working

2016-09-15 Thread SR
As I have the necessity to do sync folders, I’m creating the below lines in vagrant file. config.vm.synced_folder "hostdata/", "/home/vagrant/data_guest", create: true, disabled: false The first option create:true working perfectly on host machine, as I tested without creating the folder. B