Use some nmcli con down/ups to workaround RHBZ #1727411
Restarting NetworkManager.service doesn't seem to apply our newly-created static config in Rawhide any more, since NetworkManager 1.20.0-0.3.fc31 landed. This seems to work around the bug. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
670c2d4c9d
commit
7ec143382f
@ -52,6 +52,12 @@ sub setup_tap_static {
|
||||
my $conftext = "DEVICE=eth0\nBOOTPROTO=none\nIPADDR=$ip\nGATEWAY=10.0.2.2\nPREFIX=24\nDEFROUTE=yes\nONBOOT=yes" . $dnstext;
|
||||
assert_script_run "printf '${conftext}\n' > /etc/sysconfig/network-scripts/ifcfg-eth0";
|
||||
assert_script_run "systemctl restart NetworkManager.service";
|
||||
# FIXME workaround for
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1727411
|
||||
# remove when that's resolved
|
||||
script_run 'nmcli con down "Wired connection 1"';
|
||||
script_run 'nmcli con down "System eth0"';
|
||||
script_run 'nmcli con up "System eth0"';
|
||||
# the above doesn't seem to reliably set up resolv.conf, so...
|
||||
clone_host_file "/etc/resolv.conf";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user