Browse Source

Remove legacy ca-cert checker

Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling 1 year ago
parent
commit
8612a9b232
2 changed files with 0 additions and 24 deletions
  1. 0 3
      autotest-checkers.sh
  2. 0 21
      build/ca-bundle-checker.sh

+ 0 - 3
autotest-checkers.sh

@@ -10,11 +10,8 @@ php ./build/triple-dot-checker.php
 RESULT=$(($RESULT+$?))
 php ./build/htaccess-checker.php
 RESULT=$(($RESULT+$?))
-bash ./build/ca-bundle-checker.sh
-RESULT=$(($RESULT+$?))
 php ./build/OCPSinceChecker.php
 RESULT=$(($RESULT+$?))
-
 php ./build/files-checker.php
 RESULT=$(($RESULT+$?))
 

+ 0 - 21
build/ca-bundle-checker.sh

@@ -1,21 +0,0 @@
-#!/usr/bin/env bash
-
-if [[ -n ${DRONE_SOURCE_BRANCH} && ! ${DRONE_SOURCE_BRANCH} =~ version(\/noid)?\/([0-9.]+) ]]; then
-    echo "Skip CA bundle check"
-    exit 0
-fi
-
-echo "Fetching latest ca-bundle.crt ..."
-curl -o resources/config/ca-bundle.crt https://curl.se/ca/cacert.pem
-
-echo
-outdated=$(git diff --name-only | grep "resources/config/ca-bundle.crt")
-if [ "${outdated}" = "resources/config/ca-bundle.crt" ]; then
-    echo "CA bundle is not up to date."
-    echo "Please run: bash build/ca-bundle-checker.sh"
-    echo "And commit the result"
-    exit 1
-fi
-
-echo "CA bundle is up to date."
-exit 0