Bug description
Plugin ‘vagrant-vbguest’ won’t install after fresh install of vagrant
Vagrant version
2.2.4
Host operating system
OpenSUSE Tumbleweed 5.0.9-1-default
Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
# https://docs.vagrantup.com.
# Every Vagrant development environment requires a box. You can search for
# boxes at https://vagrantcloud.com/search.
config.vm.box = "centos/7"
# Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs
# `vagrant box outdated`. This is not recommended.
# config.vm.box_check_update = false
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# NOTE: This will enable public access to the opened port
# config.vm.network "forwarded_port", guest: 80, host: 8080
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine and only allow access
# via 127.0.0.1 to disable public access
# config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"
# Create a private network, which allows host-only access to the machine
# using a specific IP.
# config.vm.network "private_network", ip: "192.168.33.10"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network "public_network"
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
# config.vm.provider "virtualbox" do |vb|
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
#
# # Customize the amount of memory on the VM:
# vb.memory = "1024"
# end
#
# View the documentation for the provider you are using for more
# information on available options.
# Enable provisioning with a shell script. Additional provisioners such as
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
# config.vm.provision "shell", inline: <<-SHELL
# apt-get update
# apt-get install -y apache2
# SHELL
# david@cohr.net.au
config.vm.network "forwarded_port", guest: 80, host: 58080, host_ip: "127.0.0.1"
config.vm.network "forwarded_port", guest: 3306, host: 53306, host_ip: "127.0.0.1"
config.vm.synced_folder ".", "/vagrant", type: "virtualbox"
config.vm.synced_folder "/home/david/Programming/Mercury/mercury.git/", "/srv/www/public/mercury", type: "virtualbox"
config.vm.provision "ansible_local" do |ansible|
ansible.playbook = "provisioning/ansible/provision.yml"
end
config.trigger.after :up do |trigger|
trigger.run_remote = { path:"triggers/on_boot/run.sh"}
end
end
Debug output
See: https://gist.github.com/dsofeir/ccd78030262839d80ed85964a52037f2
Expected behavior
The plugin ‘vagrant-vbguest’ should have installed
Actual behavior
The plugin ‘vagrant-vbguest’ failed to install with error:
Bundler, the underlying system Vagrant uses to install plugins,
reported an error. The error is shown below. These errors are usually
caused by misconfigured plugin installations or transient network
issues. The error from Bundler is:
conflicting dependencies net-scp (= 1.2.1) and net-scp (= 2.0.0)
Activated net-scp-2.0.0
which does not match conflicting dependency (= 1.2.1)
Conflicting dependency chains:
net-scp (= 2.0.0), 2.0.0 activated
versus:
net-scp (= 1.2.1)
Gems matching net-scp (= 1.2.1):
net-scp-1.2.1
Note: Setting VAGRANT_DISABLE_STRICT_DEPENDENCY_ENFORCEMENT=1 temporarily fixes the problem
Steps to reproduce
- run command:
vagrant plugin install vagrant-vbguest
References
- Similar to issue Vagrant 1.9.7 fails to install ‘vagrant vb-guest’ #8785 which affected version 1.9.7 and was meant to be resolved in version 2.0.3
Hello,
I installed Vagrant on my laptop and tried to install these plugins vagrant-proxyconf, vagrant-timezone and vagrant-vbguest. But every times it failed with
-
Problem with some ruby library:
root@lumbricus# vagrant plugin install vagrant-proxyconf Installing the 'vagrant-proxyconf' plugin. This can take a few minutes... /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source.rb:192:in `load': Marshal.load reentered at marshal_load (RuntimeError) from /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source.rb:192:in `load_specs' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/bundler.rb:335:in `block in validate_configured_sources!' from /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source_list.rb:97:in `each' from /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source_list.rb:97:in `each_source' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/bundler.rb:333:in `validate_configured_sources!' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/bundler.rb:268:in `internal_install' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/bundler.rb:106:in `install' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/manager.rb:62:in `block in install_plugin' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/manager.rb:72:in `call' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/manager.rb:72:in `install_plugin' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/action/install_gem.rb:29:in `call' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/warden.rb:34:in `call' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/builder.rb:116:in `call' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/runner.rb:66:in `block in run' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/busy.rb:19:in `busy' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/runner.rb:66:in `run' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/base.rb:14:in `action' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/install.rb:32:in `block in execute' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/install.rb:31:in `each' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/install.rb:31:in `execute' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/root.rb:66:in `execute' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/cli.rb:42:in `execute' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/environment.rb:308:in `cli' from /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/bin/vagrant:138:in `<main>' -
Or sometimes it returns this segmentation fault:
vagrant plugin install vagrant-vbguest root@lumbricus# Installing the 'vagrant-vbguest' plugin. This can take a few minutes... /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source.rb:192: [BUG] Segmentation fault at 0x00000000000010 ruby 2.2.5p319 (2016-04-26 revision 54774) [x86_64-linux] -- Control frame information ----------------------------------------------- c:0026 p:---- s:0149 e:000148 CFUNC :load c:0025 p:0163 s:0145 e:000143 METHOD /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source.rb:192 c:0024 p:0012 s:0132 e:000131 BLOCK /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/bundler.rb:335 [FINISH] c:0023 p:---- s:0128 e:000127 CFUNC :each c:0022 p:0011 s:0125 e:000124 METHOD /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source_list.rb:97 c:0021 p:0015 s:0121 E:001ba0 METHOD /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/bundler.rb:333 c:0020 p:0168 s:0118 e:000117 METHOD /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/bundler.rb:268 c:0019 p:0016 s:0103 e:000102 METHOD /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/bundler.rb:106 c:0018 p:0021 s:0098 e:000097 LAMBDA /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/manager.rb:62 [FINISH] c:0017 p:---- s:0096 e:000095 CFUNC :call c:0016 p:0160 s:0093 E:001d60 METHOD /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/manager.rb:72 c:0015 p:0134 s:0082 e:000081 METHOD /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/action/install_gem.rb:29 c:0014 p:0081 s:0070 e:000069 METHOD /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/warden.rb:34 c:0013 p:0013 s:0064 e:000063 METHOD /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/builder.rb:116 c:0012 p:0010 s:0060 e:000059 BLOCK /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/runner.rb:66 c:0011 p:0014 s:0058 e:000057 METHOD /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/busy.rb:19 c:0010 p:0292 s:0054 E:001aa8 METHOD /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/runner.rb:66 c:0009 p:0018 s:0044 e:000043 METHOD /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/base.rb:14 c:0008 p:0042 s:0039 e:000038 BLOCK /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/install.rb:32 [FINISH] c:0007 p:---- s:0036 e:000035 CFUNC :each c:0006 p:0086 s:0033 E:000848 METHOD /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/install.rb:31 c:0005 p:0111 s:0027 e:000026 METHOD /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/root.rb:66 c:0004 p:0158 s:0023 e:000022 METHOD /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/cli.rb:42 c:0003 p:0020 s:0017 e:000016 METHOD /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/environment.rb:308 c:0002 p:0750 s:0013 E:001298 EVAL /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/bin/vagrant:138 [FINISH] c:0001 p:0000 s:0002 E:001940 TOP [FINISH] -- Ruby level backtrace information ---------------------------------------- /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/bin/vagrant:138:in `<main>' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/environment.rb:308:in `cli' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/cli.rb:42:in `execute' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/root.rb:66:in `execute' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/install.rb:31:in `execute' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/install.rb:31:in `each' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/install.rb:32:in `block in execute' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/base.rb:14:in `action' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/runner.rb:66:in `run' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/busy.rb:19:in `busy' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/runner.rb:66:in `block in run' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/builder.rb:116:in `call' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/warden.rb:34:in `call' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/action/install_gem.rb:29:in `call' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/manager.rb:72:in `install_plugin' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/manager.rb:72:in `call' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/manager.rb:62:in `block in install_plugin' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/bundler.rb:106:in `install' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/bundler.rb:268:in `internal_install' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/bundler.rb:333:in `validate_configured_sources!' /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source_list.rb:97:in `each_source' /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source_list.rb:97:in `each' /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/bundler.rb:335:in `block in validate_configured_sources!' /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source.rb:192:in `load_specs' /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source.rb:192:in `load' -- Machine register context ------------------------------------------------ RIP: 0x00007fe63db10ebe RBP: 0x0000000000000002 RSP: 0x00007fffeee9e3a0 RAX: 0x0000000001c8e7f8 RBX: 0x000000000279c570 RCX: 0x0000000000000000 RDX: 0x0000000000000000 RDI: 0x0000000001c8e7f8 RSI: 0x000000000146cb50 R8: 0x0000000000000001 R9: 0x00000000014c89b0 R10: 0x000000000146cb50 R11: 0xcccccccccccccccd R12: 0x0000000000000000 R13: 0x0000000000000003 R14: 0x0000000000000001 R15: 0x00007fe63cac3840 EFL: 0x0000000000010206 -- C level backtrace information ------------------------------------------- /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbf7725] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbf795c] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dad5e5b] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63db8bb0e] /usr/lib/libpthread.so.0 [0x7fe63d85c940] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63db10ebe] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63db10eec] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63db11f2a] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbe0f7d] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbf1fae] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbe578b] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbeb7b4] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbf05c7] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2(rb_yield+0x63) [0x7fe63dbf1523] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2(rb_ary_each+0x52) [0x7fe63da96562] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbe0f7d] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbf1fae] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbe5848] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbeb7b4] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbf05c7] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbf08d3] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbf09a8] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbe0f7d] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbf1fae] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbe578b] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbeb7b4] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbf05c7] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2(rb_yield+0x63) [0x7fe63dbf1523] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2(rb_ary_each+0x52) [0x7fe63da96562] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbe0f7d] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbf1fae] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbe5848] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dbeb7b4] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2(rb_iseq_eval_main+0x7a) [0x7fe63dbeca9a] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2 [0x7fe63dad90fc] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2(ruby_exec_node+0x1d) [0x7fe63dadab5d] /opt/vagrant/embedded/bin/../lib/libruby.so.2.2(ruby_run_node+0x1e) [0x7fe63dadcb9e] ruby [0x40084b] /usr/lib/libc.so.6(__libc_start_main+0xea) [0x7fe63cae543a] ruby(_start+0x2a) [0x40087a] -- Other runtime information ----------------------------------------------- * Loaded script: /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/bin/vagrant * Loaded features: 0 enumerator.so 1 rational.so 2 complex.so 3 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/encdb.so 4 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/trans/transdb.so 5 /opt/vagrant/embedded/lib/ruby/2.2.0/unicode_normalize.rb 6 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/rbconfig.rb 7 thread.rb 8 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/thread.so 9 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/compatibility.rb 10 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/defaults.rb 11 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/deprecate.rb 12 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/errors.rb 13 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/version.rb 14 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/requirement.rb 15 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/platform.rb 16 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/basic_specification.rb 17 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/stub_specification.rb 18 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/util/stringio.rb 19 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/specification.rb 20 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/exceptions.rb 21 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/core_ext/kernel_gem.rb 22 /opt/vagrant/embedded/lib/ruby/2.2.0/monitor.rb 23 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb 24 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems.rb 25 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/path_support.rb 26 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/dependency.rb 27 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/version.rb 28 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/config.rb 29 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/base.rb 30 /opt/vagrant/embedded/lib/ruby/2.2.0/singleton.rb 31 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/repository.rb 32 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/logevent.rb 33 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/loggerfactory.rb 34 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/staticlogger.rb 35 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/logger.rb 36 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/outputter/outputterfactory.rb 37 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/formatter/formatter.rb 38 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/outputter/outputter.rb 39 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/outputter/iooutputter.rb 40 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/outputter/fileoutputter.rb 41 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/outputter/consoleoutputters.rb 42 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/outputter/staticoutputter.rb 43 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/etc.so 44 /opt/vagrant/embedded/lib/ruby/2.2.0/fileutils.rb 45 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/outputter/rollingfileoutputter.rb 46 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/GDC.rb 47 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/MDC.rb 48 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/NDC.rb 49 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r/formatter/patternformatter.rb 50 /opt/vagrant/embedded/gems/gems/log4r-1.1.10/lib/log4r.rb 51 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/pathname.so 52 /opt/vagrant/embedded/lib/ruby/2.2.0/pathname.rb 53 /opt/vagrant/embedded/lib/ruby/2.2.0/delegate.rb 54 /opt/vagrant/embedded/lib/ruby/2.2.0/tmpdir.rb 55 /opt/vagrant/embedded/lib/ruby/2.2.0/tempfile.rb 56 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/shared_helpers.rb 57 /opt/vagrant/embedded/lib/ruby/2.2.0/json/version.rb 58 /opt/vagrant/embedded/lib/ruby/2.2.0/ostruct.rb 59 /opt/vagrant/embedded/lib/ruby/2.2.0/json/generic_object.rb 60 /opt/vagrant/embedded/lib/ruby/2.2.0/json/common.rb 61 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_16be.so 62 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_16le.so 63 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_32be.so 64 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_32le.so 65 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/json/ext/parser.so 66 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/json/ext/generator.so 67 /opt/vagrant/embedded/lib/ruby/2.2.0/json/ext.rb 68 /opt/vagrant/embedded/lib/ruby/2.2.0/json.rb 69 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/stringio.so 70 /opt/vagrant/embedded/gems/gems/childprocess-0.6.3/lib/childprocess/version.rb 71 /opt/vagrant/embedded/gems/gems/childprocess-0.6.3/lib/childprocess/errors.rb 72 /opt/vagrant/embedded/gems/gems/childprocess-0.6.3/lib/childprocess/abstract_process.rb 73 /opt/vagrant/embedded/gems/gems/childprocess-0.6.3/lib/childprocess/abstract_io.rb 74 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/fcntl.so 75 /opt/vagrant/embedded/gems/gems/childprocess-0.6.3/lib/childprocess/unix/io.rb 76 /opt/vagrant/embedded/gems/gems/childprocess-0.6.3/lib/childprocess/unix/process.rb 77 /opt/vagrant/embedded/gems/gems/childprocess-0.6.3/lib/childprocess/unix/fork_exec_process.rb 78 /opt/vagrant/embedded/gems/gems/childprocess-0.6.3/lib/childprocess/unix.rb 79 /opt/vagrant/embedded/gems/gems/childprocess-0.6.3/lib/childprocess.rb 80 /opt/vagrant/embedded/gems/gems/i18n-0.8.0/lib/i18n/version.rb 81 /opt/vagrant/embedded/lib/ruby/2.2.0/cgi/core.rb 82 /opt/vagrant/embedded/lib/ruby/2.2.0/cgi/util.rb 83 /opt/vagrant/embedded/lib/ruby/2.2.0/cgi/cookie.rb 84 /opt/vagrant/embedded/lib/ruby/2.2.0/cgi.rb 85 /opt/vagrant/embedded/gems/gems/i18n-0.8.0/lib/i18n/exceptions.rb 86 /opt/vagrant/embedded/gems/gems/i18n-0.8.0/lib/i18n/interpolate/ruby.rb 87 /opt/vagrant/embedded/gems/gems/i18n-0.8.0/lib/i18n.rb 88 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/digest.so 89 /opt/vagrant/embedded/lib/ruby/2.2.0/digest.rb 90 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/openssl.so 91 /opt/vagrant/embedded/lib/ruby/2.2.0/openssl/bn.rb 92 /opt/vagrant/embedded/lib/ruby/2.2.0/openssl/cipher.rb 93 /opt/vagrant/embedded/lib/ruby/2.2.0/openssl/config.rb 94 /opt/vagrant/embedded/lib/ruby/2.2.0/openssl/digest.rb 95 /opt/vagrant/embedded/lib/ruby/2.2.0/openssl/x509.rb 96 /opt/vagrant/embedded/lib/ruby/2.2.0/openssl/buffering.rb 97 /opt/vagrant/embedded/lib/ruby/2.2.0/openssl/ssl.rb 98 /opt/vagrant/embedded/lib/ruby/2.2.0/openssl.rb 99 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/version.rb 100 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin.rb 101 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/registry.rb 102 /opt/vagrant/embedded/lib/ruby/2.2.0/set.rb 103 /opt/vagrant/embedded/gems/gems/i18n-0.8.0/lib/i18n/config.rb 104 /opt/vagrant/embedded/lib/ruby/2.2.0/uri/rfc2396_parser.rb 105 /opt/vagrant/embedded/lib/ruby/2.2.0/uri/rfc3986_parser.rb 106 /opt/vagrant/embedded/lib/ruby/2.2.0/uri/common.rb 107 /opt/vagrant/embedded/lib/ruby/2.2.0/uri/generic.rb 108 /opt/vagrant/embedded/lib/ruby/2.2.0/uri/ftp.rb 109 /opt/vagrant/embedded/lib/ruby/2.2.0/uri/http.rb 110 /opt/vagrant/embedded/lib/ruby/2.2.0/uri/https.rb 111 /opt/vagrant/embedded/lib/ruby/2.2.0/uri/ldap.rb 112 /opt/vagrant/embedded/lib/ruby/2.2.0/uri/ldaps.rb 113 /opt/vagrant/embedded/lib/ruby/2.2.0/uri/mailto.rb 114 /opt/vagrant/embedded/lib/ruby/2.2.0/uri.rb 115 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/io/console.so 116 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/user_interaction.rb 117 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/security/policy.rb 118 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/security/policies.rb 119 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/security/trust_dir.rb 120 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/security/signer.rb 121 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/security.rb 122 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/zlib.so 123 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/package/digest_io.rb 124 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/package/source.rb 125 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/package/file_source.rb 126 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/package/io_source.rb 127 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/package/old.rb 128 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/package/tar_header.rb 129 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/package/tar_reader/entry.rb 130 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/package/tar_reader.rb 131 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/package/tar_writer.rb 132 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/package.rb 133 /opt/vagrant/embedded/lib/ruby/2.2.0/tsort.rb 134 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/dependency_list.rb 135 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/request_set/gem_dependency_api.rb 136 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/strscan.so 137 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/request_set/lockfile.rb 138 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/request_set.rb 139 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/util/list.rb 140 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/socket.so 141 /opt/vagrant/embedded/lib/ruby/2.2.0/socket.rb 142 /opt/vagrant/embedded/lib/ruby/2.2.0/timeout.rb 143 /opt/vagrant/embedded/lib/ruby/2.2.0/net/protocol.rb 144 /opt/vagrant/embedded/lib/ruby/2.2.0/net/http/exceptions.rb 145 /opt/vagrant/embedded/lib/ruby/2.2.0/net/http/header.rb 146 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/windows_31j.so 147 /opt/vagrant/embedded/lib/ruby/2.2.0/net/http/generic_request.rb 148 /opt/vagrant/embedded/lib/ruby/2.2.0/net/http/request.rb 149 /opt/vagrant/embedded/lib/ruby/2.2.0/net/http/requests.rb 150 /opt/vagrant/embedded/lib/ruby/2.2.0/net/http/response.rb 151 /opt/vagrant/embedded/lib/ruby/2.2.0/net/http/responses.rb 152 /opt/vagrant/embedded/lib/ruby/2.2.0/net/http/proxy_delta.rb 153 /opt/vagrant/embedded/lib/ruby/2.2.0/net/http/backward.rb 154 /opt/vagrant/embedded/lib/ruby/2.2.0/net/http.rb 155 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/activation_request.rb 156 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/conflict.rb 157 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/dependency_request.rb 158 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/requirement_list.rb 159 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/stats.rb 160 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/set.rb 161 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/api_set.rb 162 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/composed_set.rb 163 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/best_set.rb 164 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/current_set.rb 165 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/git_set.rb 166 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/index_set.rb 167 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/installer_set.rb 168 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/lock_set.rb 169 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/vendor_set.rb 170 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/specification.rb 171 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/spec_specification.rb 172 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/api_specification.rb 173 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/git_specification.rb 174 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/index_specification.rb 175 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/installed_specification.rb 176 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/local_specification.rb 177 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/lock_specification.rb 178 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver/vendor_specification.rb 179 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/resolver.rb 180 /opt/vagrant/embedded/lib/ruby/2.2.0/rdoc.rb 181 /opt/vagrant/embedded/lib/ruby/2.2.0/rdoc/rubygems_hook.rb 182 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/rdoc.rb 183 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/uninstaller.rb 184 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/name_tuple.rb 185 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util.rb 186 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/safe_env.rb 187 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/bundler.rb 188 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/state_file.rb 189 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/manager.rb 190 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v2/components.rb 191 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v2/errors.rb 192 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v2.rb 193 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v2/plugin.rb 194 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v2/manager.rb 195 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v1/errors.rb 196 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v1.rb 197 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v1/plugin.rb 198 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v1/manager.rb 199 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/provisioners/chef/command_builder.rb 200 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant.rb 201 /opt/vagrant/embedded/lib/ruby/2.2.0/optparse.rb 202 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/safe_puts.rb 203 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v2/command.rb 204 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/cli.rb 205 /opt/vagrant/embedded/lib/ruby/2.2.0/shellwords.rb 206 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/io.rb 207 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/safe_chdir.rb 208 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/which.rb 209 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/subprocess.rb 210 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/powershell.rb 211 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/platform.rb 212 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/ui.rb 213 /opt/vagrant/embedded/lib/ruby/2.2.0/net/https.rb 214 /opt/vagrant/embedded/lib/ruby/2.2.0/securerandom.rb 215 /opt/vagrant/embedded/gems/gems/hashicorp-checkpoint-0.1.4/lib/checkpoint/platform.rb 216 /opt/vagrant/embedded/gems/gems/hashicorp-checkpoint-0.1.4/lib/checkpoint/version.rb 217 /opt/vagrant/embedded/gems/gems/hashicorp-checkpoint-0.1.4/lib/checkpoint.rb 218 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/file_mode.rb 219 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/silence_warnings.rb 220 /opt/vagrant/embedded/gems/gems/erubis-2.7.0/lib/erubis/util.rb 221 /opt/vagrant/embedded/gems/gems/erubis-2.7.0/lib/erubis/generator.rb 222 /opt/vagrant/embedded/gems/gems/erubis-2.7.0/lib/erubis/converter.rb 223 /opt/vagrant/embedded/gems/gems/erubis-2.7.0/lib/erubis/error.rb 224 /opt/vagrant/embedded/gems/gems/erubis-2.7.0/lib/erubis/context.rb 225 /opt/vagrant/embedded/gems/gems/erubis-2.7.0/lib/erubis/evaluator.rb 226 /opt/vagrant/embedded/gems/gems/erubis-2.7.0/lib/erubis/engine.rb 227 /opt/vagrant/embedded/gems/gems/erubis-2.7.0/lib/erubis/helper.rb 228 /opt/vagrant/embedded/gems/gems/erubis-2.7.0/lib/erubis/enhancer.rb 229 /opt/vagrant/embedded/gems/gems/erubis-2.7.0/lib/erubis/engine/eruby.rb 230 /opt/vagrant/embedded/gems/gems/erubis-2.7.0/lib/erubis/local-setting.rb 231 /opt/vagrant/embedded/gems/gems/erubis-2.7.0/lib/erubis.rb 232 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/template_renderer.rb 233 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/vagrantfile.rb 234 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/environment.rb 235 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/builder.rb 236 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action.rb 237 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/hook.rb 238 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/busy.rb 239 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/runner.rb 240 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/synced_folders/nfs/action_cleanup.rb 241 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/scoped_hash_override.rb 242 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/builtin/mixin_synced_folders.rb 243 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/builtin/synced_folder_cleanup.rb 244 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/action/warden.rb 245 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/root.rb 246 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/base.rb 247 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/mixin_install_opts.rb 248 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/command/install.rb 249 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/action.rb 250 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/plugin/action/install_gem.rb 251 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/digest/sha1.so 252 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/box_collection.rb 253 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/config.rb 254 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/config/loader.rb 255 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/config/v2.rb 256 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/config/v2/util.rb 257 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/config/v2/root.rb 258 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/config/version_base.rb 259 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/config/v2/loader.rb 260 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v2/config.rb 261 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/communicators/winrm/config.rb 262 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/kernel_v2/config/ssh_connect.rb 263 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/kernel_v2/config/ssh.rb 264 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/communicators/winssh/config.rb 265 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/commands/rdp/config.rb 266 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/guests/windows/config.rb 267 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/guests/smartos/config.rb 268 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/guests/solaris11/config.rb 269 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/guests/solaris/config.rb 270 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/synced_folders/nfs/config.rb 271 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/kernel_v2/config/package.rb 272 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/kernel_v2/config/push.rb 273 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/kernel_v2/config/vagrant.rb 274 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/presence.rb 275 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/kernel_v2/config/vm_provisioner.rb 276 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/util/stacked_proc_runner.rb 277 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/kernel_v2/config/vm_subvm.rb 278 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/kernel_v2/config/vm.rb 279 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/capability_host.rb 280 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/host.rb 281 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/plugin/v2/host.rb 282 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/hosts/darwin/host.rb 283 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/hosts/bsd/host.rb 284 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/hosts/null/host.rb 285 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/hosts/windows/host.rb 286 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/hosts/linux/host.rb 287 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/hosts/redhat/host.rb 288 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/hosts/suse/host.rb 289 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/hosts/gentoo/host.rb 290 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/hosts/freebsd/host.rb 291 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/hosts/slackware/host.rb 292 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/plugins/hosts/arch/host.rb 293 /opt/vagrant/embedded/gems/gems/vagrant-1.9.5/lib/vagrant/machine_index.rb 294 /opt/vagrant/embedded/gems/gems/i18n-0.8.0/lib/i18n/backend.rb 295 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/exception.rb 296 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/syntax_error.rb 297 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/psych.so 298 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/omap.rb 299 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/set.rb 300 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/class_loader.rb 301 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/scalar_scanner.rb 302 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/nodes/node.rb 303 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/nodes/stream.rb 304 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/nodes/document.rb 305 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/nodes/sequence.rb 306 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/nodes/scalar.rb 307 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/nodes/mapping.rb 308 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/nodes/alias.rb 309 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/nodes.rb 310 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/streaming.rb 311 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/visitors/visitor.rb 312 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/visitors/to_ruby.rb 313 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/visitors/emitter.rb 314 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/handler.rb 315 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/tree_builder.rb 316 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/visitors/yaml_tree.rb 317 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/json/ruby_events.rb 318 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/visitors/json_tree.rb 319 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/visitors/depth_first.rb 320 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/visitors.rb 321 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/parser.rb 322 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/coder.rb 323 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/core_ext.rb 324 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/date_core.so 325 /opt/vagrant/embedded/lib/ruby/2.2.0/date.rb 326 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/deprecated.rb 327 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/stream.rb 328 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/json/yaml_events.rb 329 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/json/tree_builder.rb 330 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/json/stream.rb 331 /opt/vagrant/embedded/lib/ruby/2.2.0/psych/handlers/document_stream.rb 332 /opt/vagrant/embedded/lib/ruby/2.2.0/psych.rb 333 /opt/vagrant/embedded/lib/ruby/2.2.0/yaml.rb 334 /opt/vagrant/embedded/gems/gems/i18n-0.8.0/lib/i18n/core_ext/hash.rb 335 /opt/vagrant/embedded/gems/gems/i18n-0.8.0/lib/i18n/core_ext/kernel/suppress_warnings.rb 336 /opt/vagrant/embedded/gems/gems/i18n-0.8.0/lib/i18n/backend/transliterator.rb 337 /opt/vagrant/embedded/gems/gems/i18n-0.8.0/lib/i18n/backend/base.rb 338 /opt/vagrant/embedded/gems/gems/i18n-0.8.0/lib/i18n/backend/simple.rb 339 /opt/vagrant/embedded/lib/ruby/2.2.0/time.rb 340 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/request/http_pool.rb 341 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/request/https_pool.rb 342 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/request/connection_pools.rb 343 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/request.rb 344 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/uri_formatter.rb 345 /opt/vagrant/embedded/lib/ruby/2.2.0/resolv.rb 346 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/remote_fetcher.rb 347 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/text.rb 348 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/spec_fetcher.rb 349 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/util.rb 350 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source/git.rb 351 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source/installed.rb 352 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source/specific_file.rb 353 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source/local.rb 354 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source/lock.rb 355 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source/vendor.rb 356 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source.rb 357 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/source_list.rb 358 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/config_file.rb 359 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/psych_additions.rb 360 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/psych_tree.rb 361 /opt/vagrant/embedded/lib/ruby/2.2.0/rubygems/syck_hack.rb * Process memory map: 00400000-00401000 r-xp 00000000 fe:01 10381767 /opt/vagrant/embedded/bin/ruby 00600000-00601000 r--p 00000000 fe:01 10381767 /opt/vagrant/embedded/bin/ruby 00601000-00602000 rw-p 00001000 fe:01 10381767 /opt/vagrant/embedded/bin/ruby 0146c000-02b57000 rw-p 00000000 00:00 0 [heap] 7fe632a16000-7fe63350c000 rw-p 00000000 00:00 0 7fe6337c2000-7fe633a29000 r--s 00000000 fe:01 10381823 /opt/vagrant/embedded/lib/libruby.so.2.2.0 7fe633a29000-7fe634000000 rw-p 00000000 00:00 0 7fe634000000-7fe634021000 rw-p 00000000 00:00 0 7fe634021000-7fe638000000 ---p 00000000 00:00 0 7fe63808b000-7fe6380a1000 r-xp 00000000 fe:01 14552681 /usr/lib/libgcc_s.so.1 7fe6380a1000-7fe6382a0000 ---p 00016000 fe:01 14552681 /usr/lib/libgcc_s.so.1 7fe6382a0000-7fe6382a1000 r--p 00015000 fe:01 14552681 /usr/lib/libgcc_s.so.1 7fe6382a1000-7fe6382a2000 rw-p 00016000 fe:01 14552681 /usr/lib/libgcc_s.so.1 7fe6382a2000-7fe6382a7000 r-xp 00000000 fe:01 14552303 /usr/lib/libnss_dns-2.25.so 7fe6382a7000-7fe6384a6000 ---p 00005000 fe:01 14552303 /usr/lib/libnss_dns-2.25.so 7fe6384a6000-7fe6384a7000 r--p 00004000 fe:01 14552303 /usr/lib/libnss_dns-2.25.so 7fe6384a7000-7fe6384a8000 rw-p 00005000 fe:01 14552303 /usr/lib/libnss_dns-2.25.so 7fe6384a8000-7fe6384e9000 r-xp 00000000 fe:01 14561113 /usr/lib/libnss_resolve.so.2 7fe6384e9000-7fe6384ec000 r--p 00040000 fe:01 14561113 /usr/lib/libnss_resolve.so.2 7fe6384ec000-7fe6384ed000 rw-p 00043000 fe:01 14561113 /usr/lib/libnss_resolve.so.2 7fe6384ed000-7fe6384ee000 rw-p 00000000 00:00 0 7fe6384ee000-7fe6384f5000 r-xp 00000000 fe:01 14552312 /usr/lib/librt-2.25.so 7fe6384f5000-7fe6386f4000 ---p 00007000 fe:01 14552312 /usr/lib/librt-2.25.so 7fe6386f4000-7fe6386f5000 r--p 00006000 fe:01 14552312 /usr/lib/librt-2.25.so 7fe6386f5000-7fe6386f6000 rw-p 00007000 fe:01 14552312 /usr/lib/librt-2.25.so 7fe6386f6000-7fe6386fa000 r-xp 00000000 fe:01 14555718 /usr/lib/libcap.so.2.25 7fe6386fa000-7fe6388f9000 ---p 00004000 fe:01 14555718 /usr/lib/libcap.so.2.25 7fe6388f9000-7fe6388fa000 rw-p 00003000 fe:01 14555718 /usr/lib/libcap.so.2.25 7fe6388fa000-7fe63890d000 r-xp 00000000 fe:01 14552311 /usr/lib/libresolv-2.25.so 7fe63890d000-7fe638b0c000 ---p 00013000 fe:01 14552311 /usr/lib/libresolv-2.25.so 7fe638b0c000-7fe638b0d000 r--p 00012000 fe:01 14552311 /usr/lib/libresolv-2.25.so 7fe638b0d000-7fe638b0e000 rw-p 00013000 fe:01 14552311 /usr/lib/libresolv-2.25.so 7fe638b0e000-7fe638b10000 rw-p 00000000 00:00 0 7fe638b10000-7fe638b51000 r-xp 00000000 fe:01 14561112 /usr/lib/libnss_mymachines.so.2 7fe638b51000-7fe638b54000 r--p 00040000 fe:01 14561112 /usr/lib/libnss_mymachines.so.2 7fe638b54000-7fe638b55000 rw-p 00043000 fe:01 14561112 /usr/lib/libnss_mymachines.so.2 7fe638b55000-7fe638b56000 rw-p 00000000 00:00 0 7fe638b56000-7fe638b61000 r-xp 00000000 fe:01 14552304 /usr/lib/libnss_files-2.25.so 7fe638b61000-7fe638d60000 ---p 0000b000 fe:01 14552304 /usr/lib/libnss_files-2.25.so 7fe638d60000-7fe638d61000 r--p 0000a000 fe:01 14552304 /usr/lib/libnss_files-2.25.so 7fe638d61000-7fe638d62000 rw-p 0000b000 fe:01 14552304 /usr/lib/libnss_files-2.25.so 7fe638d62000-7fe638d68000 rw-p 00000000 00:00 0 7fe638d68000-7fe638d96000 r-xp 00000000 fe:01 10382904 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/date_core.so 7fe638d96000-7fe638f96000 ---p 0002e000 fe:01 10382904 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/date_core.so 7fe638f96000-7fe638f97000 r--p 0002e000 fe:01 10382904 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/date_core.so 7fe638f97000-7fe638f98000 rw-p 0002f000 fe:01 10382904 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/date_core.so 7fe638f98000-7fe638f99000 rw-p 00000000 00:00 0 7fe638f99000-7fe638fb7000 r-xp 00000000 fe:01 14589075 /usr/lib/libyaml-0.so.2.0.5 7fe638fb7000-7fe6391b6000 ---p 0001e000 fe:01 14589075 /usr/lib/libyaml-0.so.2.0.5 7fe6391b6000-7fe6391b7000 r--p 0001d000 fe:01 14589075 /usr/lib/libyaml-0.so.2.0.5 7fe6391b7000-7fe6391b8000 rw-p 0001e000 fe:01 14589075 /usr/lib/libyaml-0.so.2.0.5 7fe6391b8000-7fe6391be000 r-xp 00000000 fe:01 10382917 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/psych.so 7fe6391be000-7fe6393bd000 ---p 00006000 fe:01 10382917 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/psych.so 7fe6393bd000-7fe6393be000 r--p 00005000 fe:01 10382917 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/psych.so 7fe6393be000-7fe6393bf000 rw-p 00006000 fe:01 10382917 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/psych.so 7fe6393bf000-7fe6393c0000 r-xp 00000000 fe:01 10382940 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/digest/sha1.so 7fe6393c0000-7fe6395bf000 ---p 00001000 fe:01 10382940 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/digest/sha1.so 7fe6395bf000-7fe6395c0000 r--p 00000000 fe:01 10382940 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/digest/sha1.so 7fe6395c0000-7fe6395c1000 rw-p 00001000 fe:01 10382940 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/digest/sha1.so 7fe6395c1000-7fe6395c2000 ---p 00000000 00:00 0 7fe6395c2000-7fe6397c3000 rw-p 00000000 00:00 0 7fe6397c3000-7fe6397c6000 r-xp 00000000 fe:01 10382974 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/windows_31j.so 7fe6397c6000-7fe6399c5000 ---p 00003000 fe:01 10382974 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/windows_31j.so 7fe6399c5000-7fe6399c6000 r--p 00002000 fe:01 10382974 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/windows_31j.so 7fe6399c6000-7fe6399c7000 rw-p 00003000 fe:01 10382974 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/windows_31j.so 7fe6399c7000-7fe6399f0000 r-xp 00000000 fe:01 10382928 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/socket.so 7fe6399f0000-7fe639bef000 ---p 00029000 fe:01 10382928 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/socket.so 7fe639bef000-7fe639bf0000 r--p 00028000 fe:01 10382928 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/socket.so 7fe639bf0000-7fe639bf1000 rw-p 00029000 fe:01 10382928 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/socket.so 7fe639bf1000-7fe639bf6000 r-xp 00000000 fe:01 10382923 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/strscan.so 7fe639bf6000-7fe639df5000 ---p 00005000 fe:01 10382923 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/strscan.so 7fe639df5000-7fe639df6000 r--p 00004000 fe:01 10382923 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/strscan.so 7fe639df6000-7fe639df7000 rw-p 00005000 fe:01 10382923 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/strscan.so 7fe639df7000-7fe639e0d000 r-xp 00000000 fe:01 14561374 /usr/lib/libz.so.1.2.11 7fe639e0d000-7fe63a00c000 ---p 00016000 fe:01 14561374 /usr/lib/libz.so.1.2.11 7fe63a00c000-7fe63a00d000 r--p 00015000 fe:01 14561374 /usr/lib/libz.so.1.2.11 7fe63a00d000-7fe63a00e000 rw-p 00016000 fe:01 14561374 /usr/lib/libz.so.1.2.11 7fe63a00e000-7fe63a01b000 r-xp 00000000 fe:01 10382926 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/zlib.so 7fe63a01b000-7fe63a21a000 ---p 0000d000 fe:01 10382926 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/zlib.so 7fe63a21a000-7fe63a21b000 r--p 0000c000 fe:01 10382926 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/zlib.so 7fe63a21b000-7fe63a21c000 rw-p 0000d000 fe:01 10382926 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/zlib.so 7fe63a21c000-7fe63a21f000 r-xp 00000000 fe:01 10383003 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/io/console.so 7fe63a21f000-7fe63a41e000 ---p 00003000 fe:01 10383003 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/io/console.so 7fe63a41e000-7fe63a41f000 r--p 00002000 fe:01 10383003 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/io/console.so 7fe63a41f000-7fe63a420000 rw-p 00003000 fe:01 10383003 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/io/console.so 7fe63a420000-7fe63a423000 r-xp 00000000 fe:01 10382906 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/digest.so 7fe63a423000-7fe63a622000 ---p 00003000 fe:01 10382906 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/digest.so 7fe63a622000-7fe63a623000 r--p 00002000 fe:01 10382906 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/digest.so 7fe63a623000-7fe63a624000 rw-p 00003000 fe:01 10382906 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/digest.so 7fe63a624000-7fe63a86f000 r-xp 00000000 fe:01 14580744 /usr/lib/libcrypto.so.1.0.0 7fe63a86f000-7fe63aa6e000 ---p 0024b000 fe:01 14580744 /usr/lib/libcrypto.so.1.0.0 7fe63aa6e000-7fe63aa8a000 r--p 0024a000 fe:01 14580744 /usr/lib/libcrypto.so.1.0.0 7fe63aa8a000-7fe63aa96000 rw-p 00266000 fe:01 14580744 /usr/lib/libcrypto.so.1.0.0 7fe63aa96000-7fe63aa99000 rw-p 00000000 00:00 0 7fe63aa99000-7fe63aafc000 r-xp 00000000 fe:01 14580743 /usr/lib/libssl.so.1.0.0 7fe63aafc000-7fe63acfb000 ---p 00063000 fe:01 14580743 /usr/lib/libssl.so.1.0.0 7fe63acfb000-7fe63acff000 r--p 00062000 fe:01 14580743 /usr/lib/libssl.so.1.0.0 7fe63acff000-7fe63ad06000 rw-p 00066000 fe:01 14580743 /usr/lib/libssl.so.1.0.0 7fe63ad33000-7fe63ad80000 r-xp 00000000 fe:01 10382915 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/openssl.so 7fe63ad80000-7fe63af80000 ---p 0004d000 fe:01 10382915 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/openssl.so 7fe63af80000-7fe63af82000 r--p 0004d000 fe:01 10382915 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/openssl.so 7fe63af82000-7fe63af84000 rw-p 0004f000 fe:01 10382915 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/openssl.so 7fe63af84000-7fe63af85000 rw-p 00000000 00:00 0 7fe63af85000-7fe63af86000 r-xp 00000000 fe:01 10382908 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/fcntl.so 7fe63af86000-7fe63b185000 ---p 00001000 fe:01 10382908 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/fcntl.so 7fe63b185000-7fe63b186000 r--p 00000000 fe:01 10382908 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/fcntl.so 7fe63b186000-7fe63b187000 rw-p 00001000 fe:01 10382908 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/fcntl.so 7fe63b187000-7fe63b18e000 r-xp 00000000 fe:01 10382922 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/stringio.so 7fe63b18e000-7fe63b38d000 ---p 00007000 fe:01 10382922 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/stringio.so 7fe63b38d000-7fe63b38e000 r--p 00006000 fe:01 10382922 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/stringio.so 7fe63b38e000-7fe63b38f000 rw-p 00007000 fe:01 10382922 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/stringio.so 7fe63b38f000-7fe63b396000 r-xp 00000000 fe:01 10383000 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/json/ext/generator.so 7fe63b396000-7fe63b596000 ---p 00007000 fe:01 10383000 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/json/ext/generator.so 7fe63b596000-7fe63b597000 r--p 00007000 fe:01 10383000 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/json/ext/generator.so 7fe63b597000-7fe63b598000 rw-p 00008000 fe:01 10383000 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/json/ext/generator.so 7fe63b598000-7fe63b599000 r-xp 00000000 fe:01 10382973 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_32le.so 7fe63b599000-7fe63b799000 ---p 00001000 fe:01 10382973 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_32le.so 7fe63b799000-7fe63b79a000 r--p 00001000 fe:01 10382973 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_32le.so 7fe63b79a000-7fe63b79b000 rw-p 00002000 fe:01 10382973 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_32le.so 7fe63b79b000-7fe63b79c000 r-xp 00000000 fe:01 10382972 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_32be.so 7fe63b79c000-7fe63b99c000 ---p 00001000 fe:01 10382972 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_32be.so 7fe63b99c000-7fe63b99d000 r--p 00001000 fe:01 10382972 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_32be.so 7fe63b99d000-7fe63b99e000 rw-p 00002000 fe:01 10382972 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_32be.so 7fe63b99e000-7fe63b99f000 r-xp 00000000 fe:01 10382971 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_16le.so 7fe63b99f000-7fe63bb9f000 ---p 00001000 fe:01 10382971 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_16le.so 7fe63bb9f000-7fe63bba0000 r--p 00001000 fe:01 10382971 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_16le.so 7fe63bba0000-7fe63bba1000 rw-p 00002000 fe:01 10382971 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_16le.so 7fe63bba1000-7fe63bba2000 r-xp 00000000 fe:01 10382970 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_16be.so 7fe63bba2000-7fe63bda2000 ---p 00001000 fe:01 10382970 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_16be.so 7fe63bda2000-7fe63bda3000 r--p 00001000 fe:01 10382970 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_16be.so 7fe63bda3000-7fe63bda4000 rw-p 00002000 fe:01 10382970 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/utf_16be.so 7fe63bda4000-7fe63bdaa000 r-xp 00000000 fe:01 10383001 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/json/ext/parser.so 7fe63bdaa000-7fe63bfa9000 ---p 00006000 fe:01 10383001 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/json/ext/parser.so 7fe63bfa9000-7fe63bfaa000 r--p 00005000 fe:01 10383001 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/json/ext/parser.so 7fe63bfaa000-7fe63bfab000 rw-p 00006000 fe:01 10383001 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/json/ext/parser.so 7fe63bfab000-7fe63bfb1000 r-xp 00000000 fe:01 10382916 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/pathname.so 7fe63bfb1000-7fe63c1b0000 ---p 00006000 fe:01 10382916 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/pathname.so 7fe63c1b0000-7fe63c1b1000 r--p 00005000 fe:01 10382916 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/pathname.so 7fe63c1b1000-7fe63c1b2000 rw-p 00006000 fe:01 10382916 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/pathname.so 7fe63c1b2000-7fe63c1b8000 r-xp 00000000 fe:01 10382907 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/etc.so 7fe63c1b8000-7fe63c3b7000 ---p 00006000 fe:01 10382907 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/etc.so 7fe63c3b7000-7fe63c3b8000 r--p 00005000 fe:01 10382907 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/etc.so 7fe63c3b8000-7fe63c3b9000 rw-p 00006000 fe:01 10382907 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/etc.so 7fe63c3b9000-7fe63c3bc000 r-xp 00000000 fe:01 10382925 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/thread.so 7fe63c3bc000-7fe63c5bb000 ---p 00003000 fe:01 10382925 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/thread.so 7fe63c5bb000-7fe63c5bc000 r--p 00002000 fe:01 10382925 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/thread.so 7fe63c5bc000-7fe63c5bd000 rw-p 00003000 fe:01 10382925 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/thread.so 7fe63c5bd000-7fe63c5bf000 r-xp 00000000 fe:01 10382979 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/trans/transdb.so 7fe63c5bf000-7fe63c7bf000 ---p 00002000 fe:01 10382979 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/trans/transdb.so 7fe63c7bf000-7fe63c7c0000 r--p 00002000 fe:01 10382979 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/trans/transdb.so 7fe63c7c0000-7fe63c7c1000 rw-p 00003000 fe:01 10382979 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/trans/transdb.so 7fe63c7c1000-7fe63c7c3000 r-xp 00000000 fe:01 10382942 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/encdb.so 7fe63c7c3000-7fe63c9c2000 ---p 00002000 fe:01 10382942 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/encdb.so 7fe63c9c2000-7fe63c9c3000 r--p 00001000 fe:01 10382942 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/encdb.so 7fe63c9c3000-7fe63c9c4000 rw-p 00002000 fe:01 10382942 /opt/vagrant/embedded/lib/ruby/2.2.0/x86_64-linux/enc/encdb.so 7fe63c9c4000-7fe63cac5000 rw-p 00000000 00:00 0 7fe63cac5000-7fe63cc61000 r-xp 00000000 fe:01 14552258 /usr/lib/libc-2.25.so 7fe63cc61000-7fe63ce60000 ---p 0019c000 fe:01 14552258 /usr/lib/libc-2.25.so 7fe63ce60000-7fe63ce64000 r--p 0019b000 fe:01 14552258 /usr/lib/libc-2.25.so 7fe63ce64000-7fe63ce66000 rw-p 0019f000 fe:01 14552258 /usr/lib/libc-2.25.so 7fe63ce66000-7fe63ce6a000 rw-p 00000000 00:00 0 7fe63ce6a000-7fe63cf7a000 r-xp 00000000 fe:01 14552309 /usr/lib/libm-2.25.so 7fe63cf7a000-7fe63d17a000 ---p 00110000 fe:01 14552309 /usr/lib/libm-2.25.so 7fe63d17a000-7fe63d17b000 r--p 00110000 fe:01 14552309 /usr/lib/libm-2.25.so 7fe63d17b000-7fe63d17c000 rw-p 00111000 fe:01 14552309 /usr/lib/libm-2.25.so 7fe63d17c000-7fe63d184000 r-xp 00000000 fe:01 14552300 /usr/lib/libcrypt-2.25.so 7fe63d184000-7fe63d384000 ---p 00008000 fe:01 14552300 /usr/lib/libcrypt-2.25.so 7fe63d384000-7fe63d385000 r--p 00008000 fe:01 14552300 /usr/lib/libcrypt-2.25.so 7fe63d385000-7fe63d386000 rw-p 00009000 fe:01 14552300 /usr/lib/libcrypt-2.25.so 7fe63d386000-7fe63d3b4000 rw-p 00000000 00:00 0 7fe63d3b4000-7fe63d3b7000 r-xp 00000000 fe:01 14552308 /usr/lib/libdl-2.25.so 7fe63d3b7000-7fe63d5b6000 ---p 00003000 fe:01 14552308 /usr/lib/libdl-2.25.so 7fe63d5b6000-7fe63d5b7000 r--p 00002000 fe:01 14552308 /usr/lib/libdl-2.25.so 7fe63d5b7000-7fe63d5b8000 rw-p 00003000 fe:01 14552308 /usr/lib/libdl-2.25.so 7fe63d5b8000-7fe63d64a000 r-xp 00000000 fe:01 14555710 /usr/lib/libgmp.so.10.3.2 7fe63d64a000-7fe63d849000 ---p 00092000 fe:01 14555710 /usr/lib/libgmp.so.10.3.2 7fe63d849000-7fe63d84a000 r--p 00091000 fe:01 14555710 /usr/lib/libgmp.so.10.3.2 7fe63d84a000-7fe63d84b000 rw-p 00092000 fe:01 14555710 /usr/lib/libgmp.so.10.3.2 7fe63d84b000-7fe63d864000 r-xp 00000000 fe:01 14552239 /usr/lib/libpthread-2.25.so 7fe63d864000-7fe63da63000 ---p 00019000 fe:01 14552239 /usr/lib/libpthread-2.25.so 7fe63da63000-7fe63da64000 r--p 00018000 fe:01 14552239 /usr/lib/libpthread-2.25.so 7fe63da64000-7fe63da65000 rw-p 00019000 fe:01 14552239 /usr/lib/libpthread-2.25.so 7fe63da65000-7fe63da69000 rw-p 00000000 00:00 0 7fe63da69000-7fe63dcc8000 r-xp 00000000 fe:01 10381823 /opt/vagrant/embedded/lib/libruby.so.2.2.0 7fe63dcc8000-7fe63dec8000 ---p 0025f000 fe:01 10381823 /opt/vagrant/embedded/lib/libruby.so.2.2.0 7fe63dec8000-7fe63decd000 r--p 0025f000 fe:01 10381823 /opt/vagrant/embedded/lib/libruby.so.2.2.0 7fe63decd000-7fe63ded0000 rw-p 00264000 fe:01 10381823 /opt/vagrant/embedded/lib/libruby.so.2.2.0 7fe63ded0000-7fe63dee1000 rw-p 00000000 00:00 0 7fe63dee1000-7fe63df04000 r-xp 00000000 fe:01 14552257 /usr/lib/ld-2.25.so 7fe63df1b000-7fe63e0cf000 r--p 00000000 fe:01 14604610 /usr/lib/locale/locale-archive 7fe63e0cf000-7fe63e0d4000 rw-p 00000000 00:00 0 7fe63e0d7000-7fe63e0fb000 r--s 00000000 fe:01 14552239 /usr/lib/libpthread-2.25.so 7fe63e0fb000-7fe63e0fd000 r--s 00000000 fe:01 10381767 /opt/vagrant/embedded/bin/ruby 7fe63e0fd000-7fe63e0fe000 ---p 00000000 00:00 0 7fe63e0fe000-7fe63e103000 rw-p 00000000 00:00 0 7fe63e103000-7fe63e104000 r--p 00022000 fe:01 14552257 /usr/lib/ld-2.25.so 7fe63e104000-7fe63e105000 rw-p 00023000 fe:01 14552257 /usr/lib/ld-2.25.so 7fe63e105000-7fe63e106000 rw-p 00000000 00:00 0 7fffee6a4000-7fffeeea3000 rw-p 00000000 00:00 0 [stack] 7fffeefa4000-7fffeefa6000 r--p 00000000 00:00 0 [vvar] 7fffeefa6000-7fffeefa8000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] [NOTE] You may have encountered a bug in the Ruby interpreter or extension libraries. Bug reports are welcome. For details: http://www.ruby-lang.org/bugreport.html
I tried to install Marshal library over gem. But id didn’t help:
root@lumbricus# gem list --local
*** LOCAL GEMS ***
bigdecimal (default: 1.3.0)
did_you_mean (1.1.0)
io-console (default: 0.4.6)
json (default: 2.0.2)
marshal64 (0.1)
marshal_dump_and_load (0.1.1)
minitest (5.10.1)
net-telnet (0.1.1)
openssl (default: 2.0.3)
power_assert (0.4.1)
psych (default: 2.2.2)
rake (12.0.0)
rdoc (default: 5.0.0)
test-unit (3.2.3)
xmlrpc (0.2.1)
Do anyone one where could be problem?
Vagrant and Ruby version:
root@lumbricus# vagrant --version
Vagrant 1.9.5
root@lumbricus# ruby --version
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-linux]
Last edited by waldauf (2017-06-06 12:21:16)
This topic has been deleted. Only users with topic management privileges can see it.
Following this guide
https://github.com/vagrant-libvirt/vagrant-libvirt
joel@systemname:~$ vagrant plugin install vagrant-libvirt
Installing the 'vagrant-libvirt' plugin. This can take a few minutes...
Building native extensions. This could take a while...
Building native extensions. This could take a while...
Vagrant failed to properly resolve required dependencies. These
errors can commonly be caused by misconfigured plugin installations
or transient network issues. The reported error is:
ERROR: Failed to build gem native extension.
current directory: /home/joel/.vagrant.d/gems/2.6.6/gems/ruby-libvirt-0.7.1/ext/libvirt
/opt/vagrant/embedded/bin/ruby -I /opt/vagrant/embedded/lib/ruby/2.6.0 -r ./siteconf20200801-37599-172c5bm.rb extconf.rb
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/opt/vagrant/embedded/bin/$(RUBY_BASE_NAME)
--with-libvirt-include
--without-libvirt-include
--with-libvirt-lib
--without-libvirt-lib
--with-libvirt-config
--without-libvirt-config
--with-pkg-config
--without-pkg-config
extconf.rb:73:in `<main>': libvirt library not found in default locations (RuntimeError)
To see why this extension failed to compile, please check the mkmf.log which can be found here:
/home/joel/.vagrant.d/gems/2.6.6/extensions/x86_64-linux/2.6.0/ruby-libvirt-0.7.1/mkmf.log
extconf failed, exit code 1
Gem files will remain installed in /home/joel/.vagrant.d/gems/2.6.6/gems/ruby-libvirt-0.7.1 for inspection.
Results logged to /home/joel/.vagrant.d/gems/2.6.6/extensions/x86_64-linux/2.6.0/ruby-libvirt-0.7.1/gem_make.out
Contents of /home/joel/.vagrant.d/gems/2.6.6/extensions/x86_64-linux/2.6.0/ruby-libvirt-0.7.1/mkmf.log
"pkg-config --exists libvirt"
package configuration for libvirt is not found
I just install it with apt. I haven’t tried this way in a long time.
@stacksofplates said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
I just install it with apt. I haven’t tried this way in a long time.
It installed via apt but its not seeing libvirt as an available provider.
vagrant up --provider=libvirt
The provider 'libvirt' could not be found, but was requested to
back the machine 'default'. Please use a provider that exists.
Vagrant knows about the following providers: docker, virtualbox, hyperv
Did you do both vagrant and libvirt-vagrant through apt?
@stacksofplates said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
Did you do both vagrant and libvirt-vagrant through apt?
yes
Do you have a /usr/share/vagrant-plugins/plugins.d/vagrant-libvirt.json file?
@stacksofplates said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
Do you have a /usr/share/vagrant-plugins/plugins.d/vagrant-libvirt.json file?
Yes
{
"vagrant-libvirt": {
"ruby_version":"2.5.1",
"vagrant_version":"2.0.2",
"gem_version":"",
"require":"",
"sources":[]
}
}
what if you do a vagrant plugin list
@IRJ said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
@stacksofplates said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
vagrant plugin list
No plugins installed.
So I’m kind of shooting in the dark. Is there a plugins directory under ~/.vagrant.d/?
If there is what happens if you delete it?
@stacksofplates said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
@IRJ said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
@stacksofplates said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
vagrant plugin list
No plugins installed.So I’m kind of shooting in the dark. Is there a plugins directory under ~/.vagrant.d/?
If there is what happens if you delete it?
~/.vagrant.d$ ls
boxes data gems insecure_private_key rgloader setup_version tmp
So no plugins directory
joel@systemname:~/.vagrant.d$ sudo apt install vagrant-libvirt
[sudo] password for joel:
Reading package lists... Done
Building dependency tree
Reading state information... Done
vagrant-libvirt is already the newest version (0.0.45-2).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
@IRJ said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
joel@systemname:~/.vagrant.d$ sudo apt install vagrant-libvirt [sudo] password for joel: Reading package lists... Done Building dependency tree Reading state information... Done vagrant-libvirt is already the newest version (0.0.45-2). 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
What if you do a reinstall? apt —reinstall vagrant-libvirt?
@IRJ said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
@stacksofplates said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
Do you have a /usr/share/vagrant-plugins/plugins.d/vagrant-libvirt.json file?
Yes
{ "vagrant-libvirt": { "ruby_version":"2.5.1", "vagrant_version":"2.0.2", "gem_version":"", "require":"", "sources":[] } }
Isn’t 2.0.2 old as dirt? 2.2.9 is the current version.
@Pete-S said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
@IRJ said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
@stacksofplates said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
Do you have a /usr/share/vagrant-plugins/plugins.d/vagrant-libvirt.json file?
Yes
{ "vagrant-libvirt": { "ruby_version":"2.5.1", "vagrant_version":"2.0.2", "gem_version":"", "require":"", "sources":[] } }Isn’t 2.0.2 old as dirt? 2.2.9 is the current version.
I have 2.2.9 installed. Not sure why the config mentions that version
@stacksofplates said in Issues installing vagrant-libvirt plugin on Ubuntu 20.04:
apt —reinstall vagrant-libvirt
Reinstall supposedly worked, but still not seeing plugin
Description of problem: vagrant-mutate is not available in Fedora. Neither from the repositories nor by running <vagrant plugin install mutate> How reproducible: Install vagrant from Fedora repositories and try to install vagrant-mutate plugin by running vagrant plugin install mutate. Steps to Reproduce: Follow the advice of https://fedoramagazine.org/running-vagrant-fedora-22/ and https://developer.fedoraproject.org/tools/vagrant/vagrant-plugins.html 1. dnf install vagrant-libvirt 2. vagrant plugin install mutate Actual results: Installation fails because of missing headers and dependencies Expected results: <vagrant mutate> command is available Additional info: <dnf install vagrant-libvirt zlib-devel> fixes this issue Possible solutions that come to my mind: Either package vagrant-mutant to the Fedora repos or add the missing dependencies to vagrant or vagrant-libvirt
Comment 1
Vít Ondruch
2017-04-04 11:56:38 UTC
Isn't the name of the plugin "vagrant-mutate"? I.e. you should use "vagrant plugin install vagrant-mutate" to install the plugin.
Comment 2
Woi
2017-04-10 09:35:57 UTC
Hey Vit,
thanks for the quick replay. Your right it's "vagrant plugin install vagrant-mutate". But it's was a typo during creation of this bug report, not during installation of vagrant-mutate. However I'll take the chance to add some more details, because vagrant-libvirt and zlib-devel are not sufficient for building vagrant-mutate:
1. dnf group install with-optional virtualiation
2. dnf install vagrant
3. vagrant plugin install vagrant-mutate : Error message [1]
4. dnf install libvirt-devel rubygem-ruby-libvirt ruby-devel redhat-rpm-config
5. vagrant plugin install vagrant-mutate : Error message [2]
6. dnf install zlib-devel
7. vagrant plugin install vagrant-mutate -> working
[1]
$ vagrant plugin install vagrant-mutate
Installing the 'vagrant-mutate' plugin. This can take a few minutes...
Bundler, the underlying system Vagrant uses to install plugins,
reported an error. The error is shown below. These errors are usually
caused by misconfigured plugin installations or transient network
issues. The error from Bundler is:
An error occurred while installing ffi (1.9.18), and Bundler cannot continue.
Make sure that `gem install ffi -v '1.9.18'` succeeds before bundling.
Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`.Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
current directory: /home/XXX/.vagrant.d/gems/gems/ffi-1.9.18/ext/ffi_c
/usr/bin/ruby -r ./siteconf20170410-4483-1jx1f8e.rb extconf.rb
mkmf.rb can't find header files for ruby at /usr/share/include/ruby.h
extconf failed, exit code 1
Gem files will remain installed in /home/XXX/.vagrant.d/gems/gems/ffi-1.9.18 for inspection.
Results logged to /home/XXX/.vagrant.d/gems/extensions/x86_64-linux/2.3.0/ffi-1.9.18/gem_make.out
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
current directory: /home/XXX/.vagrant.d/gems/gems/json-2.0.3/ext/json/ext/generator
/usr/bin/ruby -r ./siteconf20170410-4483-1m37p4f.rb extconf.rb
mkmf.rb can't find header files for ruby at /usr/share/include/ruby.h
extconf failed, exit code 1
Gem files will remain installed in /home/XXX/.vagrant.d/gems/gems/json-2.0.3 for inspection.
Results logged to /home/XXX/.vagrant.d/gems/extensions/x86_64-linux/2.3.0/json-2.0.3/gem_make.out
$
[2]
$ vagrant plugin install vagrant-mutate
Installing the 'vagrant-mutate' plugin. This can take a few minutes...
Bundler, the underlying system Vagrant uses to install plugins,
reported an error. The error is shown below. These errors are usually
caused by misconfigured plugin installations or transient network
issues. The error from Bundler is:
An error occurred while installing nokogiri (1.6.8.1), and Bundler cannot continue.
Make sure that `gem install nokogiri -v '1.6.8.1'` succeeds before bundling.
Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`.Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
current directory: /home/XXX/.vagrant.d/gems/gems/nokogiri-1.6.8.1/ext/nokogiri
/usr/bin/ruby -r ./siteconf20170410-6236-rzzbjh.rb extconf.rb
checking if the C compiler accepts ... yes
Building nokogiri using packaged libraries.
Using mini_portile version 2.1.0
checking for gzdopen() in -lz... no
zlib is missing; necessary for building libxml2
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib64
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/usr/bin/$(RUBY_BASE_NAME)
--help
--clean
--use-system-libraries
--enable-static
--disable-static
--with-zlib-dir
--without-zlib-dir
--with-zlib-include
--without-zlib-include=${zlib-dir}/include
--with-zlib-lib
--without-zlib-lib=${zlib-dir}/lib64
--enable-cross-build
--disable-cross-build
To see why this extension failed to compile, please check the mkmf.log which can be found here:
/home/XXX/.vagrant.d/gems/extensions/x86_64-linux/2.3.0/nokogiri-1.6.8.1/mkmf.log
extconf failed, exit code 1
Gem files will remain installed in /home/marco/.vagrant.d/gems/gems/nokogiri-1.6.8.1 for inspection.
Results logged to /home/XXX/.vagrant.d/gems/extensions/x86_64-linux/2.3.0/nokogiri-1.6.8.1/gem_make.out
[marco@phoenix ~]$
Comment 3
Vít Ondruch
2017-04-10 12:38:13 UTC
Could you please check if you have rubygem-nokogiri and rubygem-ffi installed on your system? This should be better then installing and building them.
Comment 4
Woi
2017-04-10 21:38:08 UTC
Indeed, they are: $ sudo dnf list installed rubygem-nokogiri rubygem-ffi [...] Installed Packages rubygem-ffi.x86_64 1.9.10-3.fc24 @fedora rubygem-nokogiri.x86_64 1.7.1-1.fc25.1 @updates $
Comment 5
Vít Ondruch
2017-04-11 05:25:38 UTC
Ok, so there is something on your system which forces the dependency on older Nokogiri and FFI. You have to discover what it is. What gems do you have on your system? $ gem list What other Vagrant plugins do you have on your system? $ vagrant plugin list My guess is that the fastest remedy would be to start with the clean ~/.vagrant.d directory ...
Comment 6
Pavel Valena
2017-04-11 13:42:33 UTC
Reproduced on F24 with `rubygem-ruby-libvirt-0.6.0-3.fc24`. Updating to `rubygem-ruby-libvirt-0.7.0-1.fc24` fixed the issue for me. What is your `rubygem-ruby-libvirt` version?
Comment 7
Pavel Valena
2017-04-11 13:44:03 UTC
The above is probably unrelated though. I will try to reproduce on F25.
Comment 9
Woi
2017-04-13 08:14:21 UTC
$ vagrant plugin list vagrant-libvirt (0.0.37, system) vagrant-mutate (1.2.0) $ $ gem list|grep -ie nokogiri -ie ffi -ie ruby-libvirt ffi (1.9.10) nokogiri (1.7.1) ruby-libvirt (0.7.0) $ $ gem list *** LOCAL GEMS *** bigdecimal (1.2.8) builder (3.2.2) bundler (1.12.5) childprocess (0.5.3) did_you_mean (1.0.0) domain_name (0.5.20170223) erubis (2.7.0) excon (0.45.4) ffi (1.9.10) fog-core (1.34.0) fog-json (1.0.2) fog-libvirt (0.3.0) fog-xml (0.1.2) formatador (0.2.5) hashicorp-checkpoint (0.1.4) http-cookie (1.0.3) i18n (0.7.0) io-console (0.4.5) json (1.8.3) listen (3.1.5) log4r (1.1.10) mime-types (3.1) mime-types-data (3.2016.0521) mini_portile2 (2.1.0) multi_json (1.10.1) net-scp (1.2.1) net-sftp (2.1.2) net-ssh (3.2.0) netrc (0.10.3) nokogiri (1.7.1) psych (2.1.0) rb-inotify (0.9.7) rdoc (4.2.2) rest-client (2.0.0) ruby-libvirt (0.7.0) unf (0.1.4) unf_ext (0.0.7.2) $ I'm testing with two systems, both with Fedora 25, both with freshly installed KVM, libvirt and vargrant. One System was installed as Fedora 24 the other already made a few more upgrades.
Looks good :) What I did in detail: $ rm -rf ~/.vagrant.d $ vagrant plugin list vagrant-libvirt (0.0.35, system) $ sudo dnf remove libvirt-devel rubygem-ruby-libvirt ruby-devel redhat-rpm-config zlib-devel (Sorry missed to set LANG=C for this one) $ sudo dnf install https://kojipkgs.fedoraproject.org//work/tasks/2567/19102567/vagrant-1.8.5-3.fc25.noarch.rpm Letzte Prüfung auf abgelaufene Metadaten: vor 0:27:05 am Mon May 1 22:57:17 2017. Abhängigkeiten sind aufgelöst. ================================================================================ Package Arch Version Paketquelle Größe ================================================================================ Installieren: rubygem-builder noarch 3.2.2-5.fc24 fedora 21 k rubygem-excon noarch 0.45.4-2.fc24 fedora 32 k rubygem-fog-core noarch 1.34.0-2.fc24 fedora 44 k rubygem-fog-json noarch 1.0.2-2.fc24 fedora 11 k rubygem-fog-libvirt noarch 0.3.0-1.fc25 fedora 31 k rubygem-fog-xml noarch 0.1.2-2.fc24 fedora 13 k rubygem-formatador noarch 0.2.5-2.fc24 fedora 14 k rubygem-multi_json noarch 1.10.1-3.fc24 fedora 22 k rubygem-ruby-libvirt x86_64 0.7.0-1.fc25 fedora 86 k vagrant-libvirt noarch 0.0.35-3.fc25 updates 61 k Aktualisieren: vagrant noarch 1.8.5-3.fc25 @commandline 488 k Transaktionsübersicht ================================================================================ Installieren 10 Pakete Aktualisieren 1 Paket Gesamtgröße: 824 k ... $ $ vagrant plugin install vagrant-mutate Installing the 'vagrant-mutate' plugin. This can take a few minutes... Installed the plugin 'vagrant-mutate (1.2.0)'! $ vagrant plugin list vagrant-libvirt (0.0.35, system) vagrant-mutate (1.2.0)
Comment 12
Pavel Valena
2017-05-02 08:59:46 UTC
Great, thanks! Submitting updates to Fedora.
$ vagrant
Vagrant experienced a version conflict with some installed plugins!
This usually happens if you recently upgraded Vagrant. As part of the
upgrade process, some existing plugins are no longer compatible with
this version of Vagrant. The recommended way to fix this is to remove
your existing plugins and reinstall them one-by-one. To remove all
plugins:
rm -r ~/.vagrant.d/plugins.json ~/.vagrant.d/gems
Note if you have an alternate VAGRANT_HOME environmental variable
set, the folders above will be in that directory rather than your
user's home directory.
The error message is shown below:
Bundler could not find compatible versions for gem "net-ssh":
In snapshot (Gemfile.lock):
net-ssh (= 2.9.2)
In Gemfile:
vagrant-libvirt was resolved to 0.0.32, which depends on
fog-libvirt (~> 0.0.1) was resolved to 0.0.3, which depends on
fog-core (>= 1.27.4, ~> 1.27) was resolved to 1.32.0, which depends on
net-ssh (>= 2.1.3)
vagrant was resolved to 1.8.5, which depends on
net-sftp (~> 2.1) was resolved to 2.1.2, which depends on
net-ssh (>= 2.6.5)
vagrant was resolved to 1.8.5, which depends on
net-sftp (~> 2.1) was resolved to 2.1.2, which depends on
net-ssh (>= 2.6.5)
vagrant was resolved to 1.8.5, which depends on
net-ssh (~> 3.0)
Running `bundle update` will rebuild your snapshot from scratch, using only
the gems in your Gemfile, which may resolve the conflict.
$ rpm -q vagrant
vagrant-1.8.5-3.fc25.noarch
Comment 19
Pavel Valena
2017-05-23 23:01:55 UTC
Hello Timon, please provide us with an output the of `vagrant up --debug` and `vagrant plugin list` and `rpm -q ruby-devel` -- My guess is that you have some gems already installed(under vagrant), that conflict with the system ones. Does `rm -r ~/.vagrant.d/plugins.json ~/.vagrant.d/gems` solve your issue? Thanks!
Comment 20
Fedora Update System
2017-05-24 04:55:15 UTC
vagrant-1.8.1-6.fc24 has been pushed to the Fedora 24 stable repository. If problems still persist, please make note of it in this bug report.
Comment 21
Fedora Update System
2017-05-24 05:01:05 UTC
vagrant-1.8.5-3.fc25 has been pushed to the Fedora 25 stable repository. If problems still persist, please make note of it in this bug report.
Thanks for your support :)
`rm -r ~/.vagrant.d/plugins.json ~/.vagrant.d/gems` solves, thanks
