2018-08-20 19:19:56 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [ -f "/etc/default/acme_sh_request_env" ] ; then
|
|
|
|
. "/etc/default/acme_sh_request_env"
|
|
|
|
else
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-08-20 19:50:16 +02:00
|
|
|
cd "$ACME_SH_GIT_DIST_DIR"
|
2018-08-20 19:19:56 +02:00
|
|
|
./acme.sh $ACME_SH_INSTALL_OPTS
|
|
|
|
|
|
|
|
exit $?
|