Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vagrant-hostupdater failing to install (plugin issue?) #7565

Closed
tom-smalls opened this issue Jul 11, 2016 · 3 comments
Closed

vagrant-hostupdater failing to install (plugin issue?) #7565

tom-smalls opened this issue Jul 11, 2016 · 3 comments

Comments

@tom-smalls
Copy link

Vagrant version

Vagrant 1.8.4

Host operating system

Linux fedora 4.4.8-300.fc23.x86_64

Guest operating system

Linux fedora 4.4.4-301.fc23.x86_64

Vagrantfile

# -*- mode: ruby -*-
# vi: set ft=ruby :

def apply_default_config(config)
  config.vm.box_check_update = false
end


def install_python_dnf(config)
  config.vm.provision 'shell',
    privileged: true,
    run: 'once',
    inline: <<-SHELL
         echo "Installing python-dnf"
         dnf install python-dnf -y
         echo "----Done!----"
       SHELL
end

Vagrant.configure(2) do |config|
    install_python_dnf(config)
    apply_default_config(config)
    config.vm.network "private_network", ip: "192.168.33.11"
    config.vm.box = "akanto/fedora-23-server"
    config.vm.box_version = "0.8"
    config.vm.define :pairingstation do |t|
      end
end

Please note, if you are using Homestead or a different Vagrantfile format, we
may be unable to assist with your issue. Try to reproduce the issue using a
vanilla Vagrantfile first.

Debug output

https://gist.github.com/tom-smalls/d8c3468b13254b68751fb58c3fa45d80

Expected behavior

The vagrant-hostupdater plugin should be installed

Actual behavior

An error occurs around the installing of FFI

Steps to reproduce

  1. Run :
vagrant plugin install vagrant-hostsupdater

References

Are there any other GitHub issues (open or closed) that should be linked here?
For example:

@sethvargo
Copy link
Contributor

Gonna wrap this up in #6158. Thanks!

@tom-smalls
Copy link
Author

Ok. That's quite a long running ticket with a lot of information, is there a resolution to the problem? I found it quite hard to digest all the information reading through it

@tom-smalls
Copy link
Author

So our specific issue was that make was not available on Fedora. No idea what changed so that make was no longer available (change to how ffi is installed or Fedora image one must assume)

@ghost ghost locked and limited conversation to collaborators Apr 4, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants