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

Check resolv.conf file for updated --dns-server instead of guestinfo. #7824

Merged
merged 11 commits into from
Apr 27, 2018
4 changes: 4 additions & 0 deletions isos/base/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ END {
ensure_apt_packages() {
local install

if [ -x /usr/local/bin/xorriso -a -x /usr/bin/cpio ]; then
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why? We're passing in the package names we depend on to confirm and instead you've hardcoded a check for specific binaries.
I also see absolutely no correlation between this change and #7775

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is just to trigger CI, nothing else.

return 0
fi

# ensure we've got the utils we need
for pkg in "$@"; do
dpkg -s $pkg >/dev/null 2>&1 || install="$install $pkg"
Expand Down