Merge "make_stx_mirror_yum_conf: Fix sed statement"

This commit is contained in:
Zuul 2019-03-15 19:23:09 +00:00 committed by Gerrit Code Review
commit 46bbf79317
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ if grep -q '^reposdir=' $CENGN_YUM_CONF; then
# reposdir= already exists, modify it
if [ $RETAIN_REPODIR -eq 1 ]; then
# Append CENGN_REPOS_DIR
sed "s#^reposdir=.*\$#reposdir=\1 $CENGN_REPOS_DIR#" -i $CENGN_YUM_CONF
sed "s#^reposdir=\(.*\)\$#reposdir=\1 $CENGN_REPOS_DIR#" -i $CENGN_YUM_CONF
else
# replace with CENGN_REPOS_DIR
sed "s#^reposdir=.*\$#reposdir=$CENGN_REPOS_DIR#" -i $CENGN_YUM_CONF