docker-certbot-nginx/run.sh
askiiart f4d03d5190
All checks were successful
continuous-integration/drone Build is passing
Finally get run.sh working properly
2023-11-14 13:25:43 -06:00

9 lines
141 B
Bash
Executable file

#!/bin/sh
if [ -z "$CERTBOT_DNS_PLUGIN" ]; then
echo "No DNS plugin set, skipping"
else
pip install $CERTBOT_DNS_PLUGIN
fi
sh -c $@