1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-27 19:42:53 +03:00

Test farm test fixes (#3582)

This commit is contained in:
Peter Eckersley
2016-10-04 16:45:24 -07:00
committed by Brad Warren
parent 2146ec9535
commit 3c85ecbfee
2 changed files with 3 additions and 2 deletions

View File

@@ -17,6 +17,7 @@ then
CONFFILE=/etc/httpd/conf/httpd.conf
sudo setenforce 0 || true #disable selinux
sudo yum -y install httpd
sudo yum -y install nghttp2 || echo this is probably ok but see https://bugzilla.redhat.com/show_bug.cgi?id=1358875
sudo service httpd start
sudo mkdir -p /var/www/$PUBLIC_HOSTNAME/public_html
sudo chmod -R oug+rwx /var/www

View File

@@ -22,14 +22,14 @@ if ! command -v git ; then
fi
fi
BRANCH=`git rev-parse --abbrev-ref HEAD`
git checkout v0.1.0
git checkout -f v0.1.0
./letsencrypt-auto -v --debug --version
unset PIP_INDEX_URL
export PIP_EXTRA_INDEX_URL="$SAVE"
git checkout -f "$BRANCH"
if ! ./letsencrypt-auto -v --debug --version | grep 0.3.0 ; then
if ! ./letsencrypt-auto -v --debug --version | grep 0.9.0 ; then
echo upgrade appeared to fail
exit 1
fi