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

NetworkAutoconfiguration#setup_dchp: Ensure network configuration is read before dealing with it #1005

Merged
merged 2 commits into from
Nov 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions package/yast2-network.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Thu Nov 21 10:57:33 UTC 2019 - Knut Alejandro Anderssen González <knut.anderssen@suse.com>

- Firsboot dhcp: Ensure the network configuration has been read
before trying to configure it by dhcp (bsc#1157429)
- 4.2.30

-------------------------------------------------------------------
Thu Nov 21 07:13:28 UTC 2019 - Michal Filka <mfilka@suse.com>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-network.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2-network
Version: 4.2.29
Version: 4.2.30
Release: 0
Summary: YaST2 - Network Configuration
License: GPL-2.0-only
Expand Down
1 change: 1 addition & 0 deletions src/lib/network/network_autoconfiguration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def any_iface_active?
end

def configure_dhcp
Yast::Lan.Read(:cache)
Yast.include self, "network/routines.rb" # TODO: needed only for phy_connected

# find out network devices suitable for dhcp autoconfiguration.
Expand Down