Parallels provider vagrant box import errors

Discussion in 'Parallels Provider for Vagrant' started by Alexander3, Jul 23, 2015.

  1. Alexander3

    Alexander3 Bit poster

    Messages:
    5
    Hello, colleagues.

    I have a problem while using my parallels vagrant box. I used this scripts to create homestead.box, and then simply added this box to my vagrant with following command and it was imported successfully:
    Code:
    vagrant box add homestead.box --name="laravel/homestead"
    I used following super-minimal Vagrantfile:
    Code:
    Vagrant.configure(2) do |config|
      config.vm.box = "laravel/homestead"
    end
    
    The problem happened, when i tried to perform "vagrant up". How it can be fixed?
    Code:
    $ vagrant up --provider=parallels
    Bringing machine 'default' up with 'parallels' provider...
    /Users/alvassin/.vagrant.d/gems/gems/vagrant-parallels-1.4.1/lib/vagrant-parallels/action/import.rb:70:in `template_name': undefined method `join' for nil:NilClass (NoMethodError)
        from /Users/alvassin/.vagrant.d/gems/gems/vagrant-parallels-1.4.1/lib/vagrant-parallels/action/import.rb:37:in `recover'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:67:in `block in recover'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:64:in `each'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:64:in `recover'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builtin/call.rb:61:in `recover'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:67:in `block in recover'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:64:in `each'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:64:in `recover'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:53:in `rescue in call'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:28:in `call'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builder.rb:116:in `call'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/runner.rb:66:in `block in run'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/util/busy.rb:19:in `busy'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/runner.rb:66:in `run'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/machine.rb:214:in `action_raw'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/machine.rb:191:in `block in action'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/environment.rb:516:in `lock'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/machine.rb:178:in `call'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/machine.rb:178:in `action'
        from /opt/vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/batch_action.rb:82:in `block (2 levels) in run'
     

Share This Page