mirror of
https://github.com/certd/certd.git
synced 2026-04-05 07:20:56 +08:00
Temp remove Node v22 from matrix, broke CNAME tests Invalidate ACME directory cache after 24 hours Directory URLs for Google ACME provider Bump Pebble v2.6.0
16 lines
535 B
Bash
16 lines
535 B
Bash
#!/bin/bash
|
|
#
|
|
# Install Pebble Challenge Test Server for testing.
|
|
#
|
|
set -euo pipefail
|
|
|
|
# Download and install
|
|
wget -nv "https://github.com/letsencrypt/pebble/releases/download/v${PEBBLECTS_VERSION}/pebble-challtestsrv-linux-amd64.tar.gz" -O /tmp/pebble-challtestsrv.tar.gz
|
|
tar zxvf /tmp/pebble-challtestsrv.tar.gz -C /tmp
|
|
|
|
mv /tmp/pebble-challtestsrv-linux-amd64/linux/amd64/pebble-challtestsrv /usr/local/bin/pebble-challtestsrv
|
|
chown root:root /usr/local/bin/pebble-challtestsrv
|
|
chmod 0755 /usr/local/bin/pebble-challtestsrv
|
|
|
|
exit 0
|