-
Notifications
You must be signed in to change notification settings - Fork 129
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
exclusive Flag problems / resolvconf location #8
Comments
I encountered exactly the same issues on Mint 17.3 (i.e. LTS 14.04). |
I'm on a Fedora 24 machine and I'm facing the similar problem. |
You are right; this can easly resolved.with this and a fallback to |
On Fedora 26 there is no resolvconf binary installed nor available. |
@markus-daniel just download and build it, e.g. https://gist.github.com/uzantonomon/5489a4d9fe4caf813f45bf4bde3a1ffe |
Hi,
i have finally successully used your problem. However i encountered one problem:
you have lately added the exclusive flag, which does not work for me, since i am on a old
distro. As you can see the flag was added in ubuntu in 15.10. however i am still on 14.04 LTS.
Maybe you can make this more dynamic via calling (lsb_release -c) to check the version.
Unfortunately the resolvconf itself does not show a version, so it is not so easy to find out
if the resolvconf supports the -x or not.
http://manpages.ubuntu.com/manpages/trusty/en/man8/resolvconf.8.html
http://manpages.ubuntu.com/manpages/wily/en/man8/resolvconf.8.html
Another thing i noticed is this.
You might need to set the path manually here, i.e.
RESOLVCONF=/sbin/resolvconf
why not use
RESOLVCONF=$(type -p resolvconf)
this will find the path to the resolvconf by itself.
The text was updated successfully, but these errors were encountered: