diff options
-rw-r--r-- | qarepo | 1 | ||||
-rwxr-xr-x | qarepo-helper | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -386,6 +386,7 @@ sub set_qa_repo_info { my $repo_name_and_url = `urpmq --list-url | grep '$qa_repo_name '`; chomp($repo_name_and_url); + $repo_name_and_url =~ s#file://##; $active_qa_repo = $repo_name_and_url =~ s/\Q$qa_repo_name\E\s+(\S+)\/$arch/$1/r; diff --git a/qarepo-helper b/qarepo-helper index 00107fa..49a4b61 100755 --- a/qarepo-helper +++ b/qarepo-helper @@ -1,6 +1,6 @@ #!/bin/sh case $1 in disable) /usr/sbin/urpmi.removemedia "QA Testing ($2-bit)";; - enable) /usr/sbin/urpmi.addmedia --update "QA Testing ($2-bit)" $3;; + enable) /usr/sbin/urpmi.addmedia --update "QA Testing ($2-bit)" file://$3;; update) /usr/sbin/urpmi.update "QA Testing ($2-bit)";; esac |