ruby - Cannot install vagrant plugins without sudo on OS X -
i've installed plugins within vagrant. on different macbook, i'm trying install of same plugins using on older macbook.
for example when try install vagrant-hostmanager ruby permissions error:
$ vagrant plugin install vagrant-hostmanager installing 'vagrant-hostmanager' plugin. can take few minutes... bundler, underlying system vagrant uses install plugins, reported error. error shown below. these errors caused misconfigured plugin installations or transient network issues. error bundler is: error occurred while installing ffi (1.9.8), , bundler cannot continue. make sure `gem install ffi -v '1.9.8'` succeeds before bundling. gem::installer::extensionbuilderror: error: failed build gem native extension. /opt/vagrant/embedded/bin/ruby extconf.rb checking ffi.h... *** extconf.rb failed *** not create makefile due reason, lack of necessary libraries and/or headers. check mkmf.log file more details. 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 --with-ffi_c-dir --without-ffi_c-dir --with-ffi_c-include --without-ffi_c-include=${ffi_c-dir}/include --with-ffi_c-lib --without-ffi_c-lib=${ffi_c-dir}/ --with-libffi-config --without-libffi-config --with-pkg-config --without-pkg-config /opt/vagrant/embedded/lib/ruby/2.0.0/tmpdir.rb:92:in `mktmpdir': parent directory world writable not sticky (argumenterror) /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:510:in `try_link0' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:534:in `try_link' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:427:in `have_devel?' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:433:in `try_do' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:549:in `block in try_compile' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:502:in `with_werror' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:549:in `try_compile' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:1044:in `block in have_header' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:895:in `block in checking_for' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:340:in `block (2 levels) in postpone' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:310:in `open' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:340:in `block in postpone' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:310:in `open' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:336:in `postpone' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:894:in `checking_for' /opt/vagrant/embedded/lib/ruby/2.0.0/mkmf.rb:1043:in `have_header' extconf.rb:16:in `<main>' gem files remain installed in /volumes/passport/vagrant.d/gems/gems/ffi-1.9.8 inspection. results logged /volumes/passport/vagrant.d/gems/gems/ffi-1.9.8/ext/ffi_c/gem_make.out
one thing different i'm tight on space on local ssd, i've defined following in .bashrc:
export vagrant_home=/volumes/passport/vagrant.d
so box files stored on 2tb usb3 drive instead of chewing valuable ssd space.
now execute plugin install using sudo, becomes cascading issue, in vagrant up
cannot see plugin within vagrantfile without doing sudo vagrant up
. , vm owned root... can see how cascades out of control.
anyone know wrong? how might solve?
edit: discovered if change vagrant_home
default value of ~/.vagrant.d
, can install plugin - boxes on volume not accessible default setting. apparently ruby limitation.
tia!
okay found problem this, unclear responsibility fixing lies - i'm thinking ruby bug on os x (for @ least version embedded within vagrant).
turns out dir.mktmpdir
expects $tmpdir variable have sticky bit set. on os x $tmpdir variable points unique per user directory like:
/var/folders/yl/y9zbwwm951v3x6p62yn24ckw0000gn/t
changing sticky bit using
chmod +t $tmpdir
or more appropriate
chmod 700 $tmpdir
fixes problem.
note: i'm not sure why or how $tmpdir got 777 permissions, i've checked other os x 10.10 installs , found $tmpdir correctly has 700 permissions.
Comments
Post a Comment