From 7f30826a6dad1c1f07641aaa48cccb74480998ab Mon Sep 17 00:00:00 2001 From: Lukas Schauer Date: Mon, 19 Dec 2016 01:21:43 +0100 Subject: [PATCH] removed temporary wrapper script --- letsencrypt.sh | 64 -------------------------------------------------- 1 file changed, 64 deletions(-) delete mode 100755 letsencrypt.sh diff --git a/letsencrypt.sh b/letsencrypt.sh deleted file mode 100755 index 3e66307..0000000 --- a/letsencrypt.sh +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/bin/env bash - -cat >&2 << EOF -!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! letsencrypt.sh has been renamed to dehydrated !! -!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - -Due to trademark violation letsencrypt.sh had to be renamed and is know called dehydrated. - -To make a clean cut dehydrated doesn't use the old config locations /etc/letsencrypt.sh and -/usr/local/etc/letsencrypt.sh anymore, also the script file has been renamed. - -If you were using the default WELLKNOWN location please also update your webserver to use /var/www/dehydrated. - -You are currently running (or reading) a temporary wrapper which handles the old config locations, -you should update your setup to use /etc/dehydrated and the 'dehydrated' script file as soon as possible. - -Script execution will continue in 10 seconds. -EOF - -sleep 10 - -# parse given arguments for config -tmpargs=("${@}") -CONFIG= -CONFIGARG= -while (( ${#} )); do - case "${1}" in - --config|-f) - shift 1 - CONFIGARG="${1}" - ;; - *) - shift 1 - ;; - esac -done -set -- "${tmpargs[@]}" - -# look for default config locations -if [[ -z "${CONFIGARG:-}" ]]; then - for check_config in "/etc/letsencrypt.sh" "/usr/local/etc/letsencrypt.sh" "${PWD}" "${SCRIPTDIR}"; do - if [[ -f "${check_config}/config" ]]; then - CONFIG="${check_config}/config" - break - fi - done -fi - -# find dehydrated script directory -SOURCE="${BASH_SOURCE[0]}" -while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink - DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" - SOURCE="$(readlink "$SOURCE")" - [[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located -done -DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" - -# add water -if [[ -n "${CONFIG:-}" ]]; then - "${DIR}/dehydrated" --config "${CONFIG}" "${@}" -else - "${DIR}/dehydrated" "${@}" -fi -- 2.47.3