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

Kstest pr netgui #1233

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion onboot-activate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

# Ignore unused variable parsed out by tooling scripts as test tags metadata
# shellcheck disable=SC2034
TESTTYPE="network coverage"
TESTTYPE="network coverage testingtype"

. ${KSTESTDIR}/functions.sh

Expand Down
2 changes: 1 addition & 1 deletion post-nochroot-lib-network.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function check_gui_configurations() {
old_IFS=$IFS
IFS=$'\n'
# use \s so that it does not match itself in the log
for line in $(egrep -o "adding\sdevice configuration.*" /tmp/anaconda.log); do
for line in $(egrep -o "addding\sdevice configuration.*" /tmp/anaconda.log); do
local device=$(echo $line | cut -d"'" -f4)
local con=$(echo $line | cut -d"'" -f2)
echo "${device}:${con}"
Expand Down