I was going through nomad tutorial, and it creates a 'ubuntu-xenial-16.04-cloudimg-console.log' in my local directory. The nomad vagrant file uses 'ubuntu/xenial64', so was this something built in to use /vagrant directory and write to here.
-- Anyhow, this is totally cool, loving it, just want to know more about it. Is there a packer script for 'ubuntu/xenial64' in github I could look at? - Joaquin 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://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/cd6059d0-c01c-496d-9f7c-7282ba8ae46b%40googlegroups.com. For more options, visit https://groups.google.com/d/optout. |
hello it came from the ubuntu/xenial box have a look at the Vagrantfile included in the box HOME/.vagrant.d/boxes/ubuntu-VAGRANTSLASH-xenial64/ i think inside includes is the Vagrantfile Alvaro On Sun, Mar 19, 2017 at 9:30 PM, Joaquin Menchaca <[hidden email]> wrote:
Alvaro 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://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/CAHqq0ewdcA_3GJgqFT14iBzCC7Tdn3RgnoZw0_mNLnL6_fqXXg%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout. |
Hello Alvaro,
-- I see the following lines in the Vagrantfile of that box: config.vm.provider "virtualbox" do |vb| vb.customize [ "modifyvm", :id, "--uart1", "0x3F8", "4" ] vb.customize [ "modifyvm", :id, "--uartmode1", "file", File.join(Dir.pwd, "ubuntu-xenial-16.04-cloudimg-console.log") ] end Is there a way to disable this behaviour? Thank you, Kiru Am Sonntag, 19. März 2017 22:45:00 UTC+1 schrieb Alvaro Miranda Aguilera:
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://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/f163c78e-883f-49aa-851a-0612f7011a3a%40googlegroups.com. For more options, visit https://groups.google.com/d/optout. |
Hello YEs, you can comment those lines out. # config.vm.provider "virtualbox" do |vb| # vb.customize [ "modifyvm", :id, "--uart1", "0x3F8", "4" ] # vb.customize [ "modifyvm", :id, "--uartmode1", "file", File.join(Dir.pwd, "ubuntu-xenial-16.04-cloudimg- # end On Wed, May 24, 2017 at 11:06 PM, Kirusanth Poopalasingam <[hidden email]> wrote:
Alvaro 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://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/CAHqq0ew8jnGiETmDbCmA_3ecxjDBhe2q0DoF7-y19ZrH1sqnig%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout. |
Hello,
-- Unfortunately it is not that easy. I'm using this box in my vagrant config: https://atlas.hashicorp.com/ubuntu/boxes/xenial64/versions/20170523.1.0 The above lines are from the above box, not from my config (taken from .vagrant.d/boxes/ubuntu-VAGRANTSLASH-xenial64/20170523.1.0/virtualbox/Vagrantfile ). I don't want this log file created in my local directory. I have no clue, who I can ask to comment those lines ( I guess those are just for debugging purposes?). Thanks, Kiru Am Donnerstag, 25. Mai 2017 10:04:53 UTC+2 schrieb Alvaro Miranda Aguilera:
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://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/b4749575-466d-4f95-a080-01f49880b441%40googlegroups.com. For more options, visit https://groups.google.com/d/optout. |
The box is from ubuntu/canonical. is not a box made by hashicorp is thats the question. Try to reverse what they do: Vagrant.configure(2) do |config| config.vm.provider "virtualbox" config.vm.box = "ubuntu/xenial64" config.vm.provider "virtualbox" do |vb| vb.customize [ "modifyvm", :id, "--uartmode1", "disconnected" ] end end So far, on my test didn't generated the log. Alvaro. On Thu, May 25, 2017 at 10:26 AM, Kirusanth Poopalasingam <[hidden email]> wrote:
Alvaro 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://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/CAHqq0eyUF3kp%3DOQyHn8PnGRgd7kW310E8-G_G%3DcYz3j075GzOg%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout. |
Yes, that did the trick. Thank you, Kiru Am Freitag, 26. Mai 2017 09:37:29 UTC+2 schrieb Alvaro Miranda Aguilera:
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://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/9b75e5eb-d670-4bd2-b033-b55f26e96061%40googlegroups.com. For more options, visit https://groups.google.com/d/optout. |
Free forum by Nabble | Edit this page |