-
-
Notifications
You must be signed in to change notification settings - Fork 303
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
Get provisioning working on Xenial #1
Comments
Upstream issue to get Ansible's official PPA working on Xenial: ansible/ansible#15524 For now, I think I can install Ansible differently, and we should be okay. |
Maybe:
Otherwise I think Xenial has pip via |
I think I've run into: hashicorp/vagrant#6871 |
Adding If I remove those two lines, I get an Tried from http://unix.stackexchange.com/a/88619/16194, but might need to do some other hackish thing, like was suggested in the original issue in bento. |
Trying |
That didn't work. And neither did |
So some other places to read:
Trying this now:
|
Using the above gives the same result as my testing earlier—no |
Er, actually there is an |
So the networking fix looks to be a combination of:
1 The definition of a semi-complete Also, the overarching problem is that Vagrant currently doesn't handle predictable network interfaces, which are now used by most of the major distros; there's a PR (hashicorp/vagrant#7241) which aims to add in support, but it could be some time before that gets in. I'm testing adding in all the above to |
@geerlingguy Had followed your steps in #1 (comment), but it has a mistake. The edit to
I figured it out from 6ff7948. Thanks for posting this fix. |
For future reference, having done the first two steps mentioned above:
The first time I booted the VM, it hung for about 2 minutes on a message about "Started Journal Service". Then it was all fine and it fixed the problem. Future boots were normal. Thanks for the fix. |
I "fixed"/worked around this by using the networking.d folder: echo "auto eth1" >> /etc/network/interfaces.d/eth1
echo "iface eth1 inet manual" >> /etc/network/interfaces.d/eth1
echo "auto eth2" >> /etc/network/interfaces.d/eth2
echo "iface eth2 inet manual" >> /etc/network/interfaces.d/eth2
echo "auto eth3" >> /etc/network/interfaces.d/eth3
echo "iface eth3 inet manual" >> /etc/network/interfaces.d/eth3 |
@dsbaars your fix does not work for me |
See upstream(ish) PR: chef/bento#545
There are probably few changes required to the boot sequence and kickstart config.
The text was updated successfully, but these errors were encountered: