Fix check for connectivity to updates repo

Change-Id: I04ca707b1f5b146be3d5219df9e3705c334bad75
Related-Bug: #1466080
This commit is contained in:
Matthew Mosesohn 2015-06-19 12:37:40 +03:00
parent 237c6ec1e9
commit a399837218
1 changed files with 9 additions and 7 deletions

View File

@ -46,13 +46,6 @@ if [[ "$showmenu" == "yes" || "$showmenu" == "YES" ]]; then
fi
fi
#Attempt to apply updates if repo is accessible
repourl=$(grep baseurl /etc/yum.repos.d/*updates* | cut -d'=' -f2- | head -1)
if urlaccesscheck check "$repourl" ; then
UPDATE_ISSUES=0
else
UPDATE_ISSUES=1
fi
#Reread /etc/sysconfig/network to inform puppet of changes
. /etc/sysconfig/network
@ -126,6 +119,15 @@ gpgcheck=0
skip_if_unavailable=1
EOF
#Check if repo is accessible
echo "Checking for access to updates repository..."
repourl=$(grep baseurl /etc/yum.repos.d/*updates* 2>/dev/null | cut -d'=' -f2- | head -1)
if urlaccesscheck check "$repourl" ; then
UPDATE_ISSUES=0
else
UPDATE_ISSUES=1
fi
if [ $UPDATE_ISSUES -eq 1 ]; then
warning="WARNING: There are issues connecting to Fuel update repository.\
\nPlease fix your connection and update this node with \`yum update\`\