Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBrad Warren <bmw@users.noreply.github.com>2021-03-06 01:14:32 +0300
committerGitHub <noreply@github.com>2021-03-06 01:14:32 +0300
commit94dc6936e73114ac4adc5f766d06f6c3cc9f67e8 (patch)
tree52aee111c2612d6fc6595d382521f5e1734f4351 /tests
parenta3abcc001a1dff41a6ecd90f779cf038e2f32cc9 (diff)
Final update to certbot-auto (#8706)
Fixes https://github.com/certbot/certbot/issues/8690. After this PR, we'll let the release script make its automated changes to certbot-auto as part of the 1.14.0 release and then never make any code changes to certbot-auto ever again! * disable upgrades on debian * update test_leauto_upgrades.sh * update changelog
Diffstat (limited to 'tests')
-rwxr-xr-xtests/letstest/scripts/test_leauto_upgrades.sh17
1 files changed, 4 insertions, 13 deletions
diff --git a/tests/letstest/scripts/test_leauto_upgrades.sh b/tests/letstest/scripts/test_leauto_upgrades.sh
index 407a865f2..3964364e1 100755
--- a/tests/letstest/scripts/test_leauto_upgrades.sh
+++ b/tests/letstest/scripts/test_leauto_upgrades.sh
@@ -153,17 +153,8 @@ if ! ./letsencrypt-auto -v --debug --version 2>&1 | grep "will no longer receive
exit 1
fi
-# Finally, we check if our local server received more requests. Over time,
-# we'll move more and more OSes into this case until it this is the expected
-# behavior on all systems.
-if [ -f /etc/redhat-release ]; then
- if ! diff "$LOG_FILE" "$PREVIOUS_LOG_FILE" ; then
- echo our local server received unexpected requests
- exit 1
- fi
-else
- if diff "$LOG_FILE" "$PREVIOUS_LOG_FILE" ; then
- echo our local server did not receive the requests we expected
- exit 1
- fi
+# Finally, we check if our local server received more requests.
+if ! diff "$LOG_FILE" "$PREVIOUS_LOG_FILE" ; then
+ echo our local server received unexpected requests
+ exit 1
fi