mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-21 21:43:08 +00:00
_check_install_source: handle change to addrepo logging in F37
Logging of additional repo setup changed recently in F37, we need to handle the new message format here. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
8ff6e3b78a
commit
a57a3ec403
@ -24,8 +24,10 @@ sub run {
|
||||
$self->root_console;
|
||||
if ($addrepourl) {
|
||||
if ($addrepourl =~ m,^nfs://,,) {
|
||||
# this line tells us it set up a repo for our URL...
|
||||
assert_script_run 'grep "repo addrepo.*' . ${addrepourl} . '" /tmp/packaging.log';
|
||||
# this line tells us it set up a repo for our URL.
|
||||
# "repo addrepo" is older format from before Fedora 37,
|
||||
# "Add the 'addrepo" is newer format from F37+
|
||||
assert_script_run 'grep "\(repo \|Add the \'\)addrepo.*' . ${addrepourl} . '" /tmp/packaging.log';
|
||||
# ...this line tells us it added the repo called 'addrepo' (<F36)...
|
||||
if (script_run 'grep "\(added\|enabled\) repo: .addrepo." /tmp/packaging.log') {
|
||||
# this is F36+
|
||||
|
Loading…
Reference in New Issue
Block a user