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

Actually validate network connectivity on NM MM setup #18726

Merged
merged 1 commit into from
Feb 27, 2024
Merged
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
2 changes: 1 addition & 1 deletion lib/mm_network.pm
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ sub restart_networking {
assert_script_run 'nmcli networking off';
assert_script_run 'nmcli networking on';
# Wait until the connections are configured
assert_script_run 'nmcli networking connectivity check';
assert_script_run "until nmcli networking connectivity check | tee /dev/stderr | grep full; do sleep 10; done";
} else {
assert_script_run 'rcnetwork restart';
}
Expand Down