[vagrant-up] Re: Using auto_config: false for a private network without specifying IP?

2018-02-21 Thread Shashank Korada
, Shashank Korada wrote: > > Hi, > > I am trying to spin a VM that has an additional interface which I want to > configure/use later and hence do NOT want the IP to be assigned to it. > I am using the auto_config feature which does help in not assigning an IP > to the inter

[vagrant-up] Using auto_config: false for a private network without specifying IP?

2018-02-21 Thread Shashank Korada
Hi, I am trying to spin a VM that has an additional interface which I want to configure/use later and hence do NOT want the IP to be assigned to it. I am using the auto_config feature which does help in not assigning an IP to the interface But for some reason I require the IP not to be

Re: [vagrant-up] Re: Using array variables in Vagrantfile?

2018-02-05 Thread Shashank Korada
v.cpus = 2 v.nested = true end end end end On Tuesday, February 6, 2018 at 8:40:37 AM UTC+5:30, Shashank Korada wrote: > > I tried to do the following: > > CFG_IP="$LIST_IPS".split(",") or CFG_IP="$LIST_IPS".split(&q

Re: [vagrant-up] Re: Using array variables in Vagrantfile?

2018-02-05 Thread Shashank Korada
ot;, :protocol=>"tcp", :id=>"49129a87-dcdd-4539-a898-e2ef8b2bed38"} Dont think the substitution worked as I had expected. On Tuesday, February 6, 2018 at 12:15:05 AM UTC+5:30, Shashank Korada wrote: > > Thank you Alvaro. This certainly helps but since I am expo

Re: [vagrant-up] Re: Using array variables in Vagrantfile?

2018-02-05 Thread Shashank Korada
+5:30, Alvaro Miranda Aguilera wrote: > > you can use: > > ["192.168.11.11", "192.168.12.12"].to_enum.with_index(1).each do |ip, i| > > then you can use the ip and/or the index/counter i > > On Sun, Feb 4, 2018 at 10:39 PM, Shashank Korada <shashan...@gmail

[vagrant-up] Using array variables in Vagrantfile?

2018-02-04 Thread Shashank Korada
Hi, I am trying to write a Vagrantfile that spins up 'N' VMs with static IPs defined my me which are defined by an environment variable(array) export ARR_IP=("10.20.20.10" "10.20.20.11" "10.20.20.12") Vagrantfile: CFG_NUM = 3 CFG_IP = "${ARR_IP[*]}" VAGRANTFILE_API_VERSION = "2"

Re: [vagrant-up] vagrant ssh-config HostName changes post running a provisioning shell script??

2018-02-02 Thread Shashank Korada
there is a config.vm.hostname = > "something" in the Vagrantifle > > otherwise it shouldn't > > why you are running vagrant commands with sudo? > > > On Thu, Feb 1, 2018 at 9:45 PM, Shashank Korada <shashan...@gmail.com > > wrote: > >> >&g

[vagrant-up] vagrant ssh-config HostName changes post running a provisioning shell script??

2018-02-01 Thread Shashank Korada
down votefavorite I am bringing up a VM using the vmware vagrant plugin and once the VM is up I run a shell script to provision the VM. Prior to the script that runs, following is the

Re: [vagrant-up] Password prompt on bringing up Vagrant although it is specified in Vagrantfile

2018-01-25 Thread Shashank Korada
Miranda Aguilera wrote: > > hello > > thats new info. you should open an issue with then and check > > thats a 3rd party plugin. > > thanks > alvaro > > On Thu, Jan 25, 2018 at 6:33 AM, Shashank Korada <shashan...@gmail.com > > wrote: > >>

Re: [vagrant-up] Password prompt on bringing up Vagrant although it is specified in Vagrantfile

2018-01-24 Thread Shashank Korada
> config.ssh.username > > or > x.ssh.username > > > > > On Wed, Jan 24, 2018 at 7:23 AM, Shashank Korada <shashan...@gmail.com > > wrote: > >> Hello, >> >> I am trying to launch VMs on a remote server by specifying the >> username/password f

Re: [vagrant-up] Vagrant vmware-esxi plugin flag to enable hardware virtualization on the VM

2018-01-18 Thread Shashank Korada
gt; Thanks > Alvaro. > > On Wed, Jan 17, 2018 at 11:54 AM, Shashank Korada <shashan...@gmail.com > > wrote: > >> Hi, >> >> I am using the vagrant esxi plugin for my testing. >> >> Plugin: https://github.com/josenk/vagrant-vmware-esxi >&

[vagrant-up] Vagrant vmware-esxi plugin flag to enable hardware virtualization on the VM

2018-01-17 Thread Shashank Korada
Hi, I am using the vagrant esxi plugin for my testing. Plugin: https://github.com/josenk/vagrant-vmware-esxi A couple of issues that I am facing. 1. For my testing I need to enable hardware virtualization on the VM that is brought up on the ESXI server. Is there a flag that I can enable in