vagrant.rst
changeset 2307 08aa10b9c7ff
parent 2306 5892d69ad3ed
child 2308 caadfc329ea2
equal deleted inserted replaced
2306:5892d69ad3ed 2307:08aa10b9c7ff
    23 Set ``VBOX_MSI_INSTALL_PATH`` variable::
    23 Set ``VBOX_MSI_INSTALL_PATH`` variable::
    24 
    24 
    25   VBOX_MSI_INSTALL_PATH=c:\opt\VirtualBox
    25   VBOX_MSI_INSTALL_PATH=c:\opt\VirtualBox
    26 
    26 
    27 It is set/updated by VirtualBox installer and was ``VBOX_INSTALL_PATH`` before 4.3.12 (2014).
    27 It is set/updated by VirtualBox installer and was ``VBOX_INSTALL_PATH`` before 4.3.12 (2014).
       
    28 
       
    29 Updating Vagrant
       
    30 ================
       
    31 
       
    32 Plugins are required to reconfigures when Vagrant version was updated::
       
    33 
       
    34   vagrant plugin expunge --reinstall
       
    35 
       
    36 and possibly::
       
    37 
       
    38   vagrant plugin update
    28 
    39 
    29 Managing names
    40 Managing names
    30 ==============
    41 ==============
    31 
    42 
    32 Vagrant VM name::
    43 Vagrant VM name::
   148   List of vagrant plugins.
   159   List of vagrant plugins.
   149 
   160 
   150 Debugging Vagrant
   161 Debugging Vagrant
   151 =================
   162 =================
   152 
   163 
   153 Add environment variavle::
   164 Add environment variable::
   154 
   165 
   155   VAGRANT_LOG=warn vagrant ssh
   166   VAGRANT_LOG=warn vagrant ssh
   156   VAGRANT_LOG=info vagrant ssh
   167   VAGRANT_LOG=info vagrant ssh
   157   VAGRANT_LOG=debug vagrant ssh
   168   VAGRANT_LOG=debug vagrant ssh
       
   169 
       
   170 or option::
       
   171 
       
   172   vagrant up --debug
       
   173 
       
   174 To add timestamps use one of::
       
   175 
       
   176   VAGRANT_LOG_TIMESTAMP=1 vagrant up
       
   177   vagrant up --timestamp
   158 
   178 
   159 https://www.vagrantup.com/docs/other/environmental-variables.html
   179 https://www.vagrantup.com/docs/other/environmental-variables.html
   160   Environmental Variables. ``VAGRANT_LOG``.
   180   Environmental Variables. ``VAGRANT_LOG``.
   161 
   181 
   162 Running individual provisioning scripts
   182 Running individual provisioning scripts