mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 15:52:08 -04:00
16 lines
692 B
Bash
16 lines
692 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Generate all necessary files for building snaps for all DNS plugins
|
||
|
|
set -eu
|
||
|
|
|
||
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||
|
|
CERTBOT_DIR="$(dirname "$(dirname "${DIR}")")"
|
||
|
|
|
||
|
|
for PLUGIN_PATH in "${CERTBOT_DIR}"/certbot-dns-*; do
|
||
|
|
bash "${CERTBOT_DIR}"/tools/snap/generate_dnsplugins_snapcraft.sh $PLUGIN_PATH
|
||
|
|
bash "${CERTBOT_DIR}"/tools/snap/generate_dnsplugins_postrefreshhook.sh $PLUGIN_PATH
|
||
|
|
# Create constraints file
|
||
|
|
"${CERTBOT_DIR}"/tools/merge_requirements.py tools/dev_constraints.txt \
|
||
|
|
<("${CERTBOT_DIR}"/tools/strip_hashes.py letsencrypt-auto-source/pieces/dependency-requirements.txt) \
|
||
|
|
> "${PLUGIN_PATH}"/snap-constraints.txt
|
||
|
|
done
|