Merge "Fix regex for mirror URL substitution"
This commit is contained in:
commit
9b00377f31
@ -12,4 +12,4 @@ DIB_DISTRIBUTION_MIRROR=${DIB_DISTRIBUTION_MIRROR:-}
|
|||||||
|
|
||||||
# Only set the mirror for the Base, Extras and Updates repositories
|
# Only set the mirror for the Base, Extras and Updates repositories
|
||||||
# The others arn't enabled and do not exist on all mirrors
|
# The others arn't enabled and do not exist on all mirrors
|
||||||
sed -e "s|^#baseurl=http://mirror.centos.org/centos|baseurl=$DIB_DISTRIBUTION_MIRROR|;/^mirrorlist=/d" -i /etc/yum.repos.d/CentOS-Base.repo
|
sed -e "s|^#baseurl=http[s]*://mirror.centos.org/centos|baseurl=$DIB_DISTRIBUTION_MIRROR|;/^mirrorlist=/d" -i /etc/yum.repos.d/CentOS-Base.repo
|
||||||
|
@ -45,5 +45,5 @@ DIB_EPEL_MIRROR=${DIB_EPEL_MIRROR:-}
|
|||||||
[ -n "$DIB_EPEL_MIRROR" ] || exit 0
|
[ -n "$DIB_EPEL_MIRROR" ] || exit 0
|
||||||
|
|
||||||
# Set the EPEL mirror to use
|
# Set the EPEL mirror to use
|
||||||
sed -e "s|^#baseurl=http://download.fedoraproject.org/pub/epel|baseurl=$DIB_EPEL_MIRROR|;/^mirrorlist=/d;/^metalink=/d" -i /etc/yum.repos.d/epel.repo
|
sed -e "s|^#baseurl=http[s]*://download.fedoraproject.org/pub/epel|baseurl=$DIB_EPEL_MIRROR|;/^mirrorlist=/d;/^metalink=/d" -i /etc/yum.repos.d/epel.repo
|
||||||
|
|
||||||
|
@ -19,5 +19,5 @@ if [[ ${DIB_RELEASE} -gt 27 ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
for FILE in /etc/yum.repos.d/fedora.repo /etc/yum.repos.d/fedora-updates.repo /etc/yum.repos.d/fedora-updates-testing.repo; do
|
for FILE in /etc/yum.repos.d/fedora.repo /etc/yum.repos.d/fedora-updates.repo /etc/yum.repos.d/fedora-updates-testing.repo; do
|
||||||
sudo sed -e "s|^#baseurl=http://download.fedoraproject.org/pub/fedora/linux|baseurl=$DIB_DISTRIBUTION_MIRROR|;/^metalink/d" -i $FILE
|
sudo sed -e "s|^#baseurl=http[s]*://download.fedoraproject.org/pub/fedora/linux|baseurl=$DIB_DISTRIBUTION_MIRROR|;/^metalink/d" -i $FILE
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user