old obsolete version. Upstream is up-to-date.

This commit is contained in:
Micha Glave 2020-05-04 15:40:58 +02:00
parent 1dac57338c
commit 270df78ba5
4 changed files with 0 additions and 140 deletions

View File

@ -1,3 +0,0 @@
AUX config 3491 SHA256 66499ffb7e57d8911c9c34d57e2e12759d924f8e5b73fe2a51c9d327db0a9899 SHA512 68a30856e7bd843186eaac3a90051c3eaa2814b0990986a3153c5724f1b44b92953507ef5e455e727b4fd5c5e1aec557c8f341805abc9a69d12fa46620b020c1 WHIRLPOOL 43b94a00221ca6635b5dbc0cc80c3dd552c3b0293bd5469e6026d3a5084753cd22d08a24675ab406d0f5c12c6ef6e7c892be77094de8ae90ec39bacd85e0b080
AUX nginx.conf 73 SHA256 9f94c681db9dd230b0a3969bddeb21b5f66f13a52c03c30541775cd54a1719bd SHA512 8c4d6339f7b0eb3ab87a43a52cbbd8041a83d546f6c2a153af701efc957d304431384a705ecd05dd0ddffb53ab879828ef50d04ff050ccec97685134a3c2b29b WHIRLPOOL 79c3779f653ce6243a5af5c3009798d68f7c2ff7844450e13631b9315d5d6af0b352e104bb999f6ce531e6ba1465ef76d89ff248a8a5fa715cac3f5b9bbaca2f
EBUILD dehydrated-0.3.1.ebuild 883 SHA256 9735c00e5b199b3417256ad35e19c840ca7d51f2a03bae31d8467ca59107899d SHA512 b9c145b794ad4ceb93c100c2e252751cf19cb8d0f6c31e8ffb3f302a11bbf3797032656cbc0a582b569a192ae811cc1724300e9cea7fe87e4cb3adf18f6b0bc9 WHIRLPOOL f07706cee66eb9aa27479a07de62726ce081d874b148d7bfaae04af6a6da58a8563357f4f5f801d43c63dea67a5a924e3bdf95afd4c38eaf480d355f4d9f1b04

View File

@ -1,46 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit git-r3
DESCRIPTION="Client for signing certificates with an ACME-server implemented as a relatively simple bash-script"
HOMEPAGE="https://github.com/lukas2511/dehydrated"
EGIT_REPO_URI="https://github.com/lukas2511/${PN}.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="nginx"
DEPEND=""
RDEPEND="
sys-apps/coreutils
net-misc/curl
dev-libs/openssl
"
DOCS=( README.md docs/. )
src_install() {
dobin ${PN}
docompress -x /usr/share/doc/${PF}/examples
default
ETCDIR=/etc/${PN}
insinto ${ETCDIR}
doins ${FILESDIR}/config
touch ${D}${ETCDIR}/domains
keepdir /etc/ssl/${PN}
keepdir /var/www/${PN}
if use nginx ; then
mkdir -p ${D}/etc/nginx
cp ${FILESDIR}/nginx.conf ${D}/etc/nginx/${PN}.conf
fi
}
src_test() {
./test.sh
}

View File

@ -1,87 +0,0 @@
########################################################
# This is the main config file for dehydrated #
# #
# This file is looked for in the following locations: #
# $SCRIPTDIR/config (next to this script) #
# /usr/local/etc/dehydrated/config #
# /etc/dehydrated/config #
# ${PWD}/config (in current working-directory) #
# #
# Default values of this config are in comments #
########################################################
# Resolve names to addresses of IP version only. (curl)
# supported values: 4, 6
# default: <unset>
#IP_VERSION=
# Path to certificate authority (default: https://acme-v01.api.letsencrypt.org/directory)
#CA="https://acme-v01.api.letsencrypt.org/directory"
# Path to license agreement (default: https://letsencrypt.org/documents/LE-SA-v1.1.1-August-1-2016.pdf)
#LICENSE="https://letsencrypt.org/documents/LE-SA-v1.1.1-August-1-2016.pdf"
# Which challenge should be used? Currently http-01 and dns-01 are supported
#CHALLENGETYPE="http-01"
# Path to a directory containing additional config files, allowing to override
# the defaults found in the main configuration file. Additional config files
# in this directory needs to be named with a '.sh' ending.
# default: <unset>
#CONFIG_D=
# Base directory for account key, generated certificates and list of domains (default: $SCRIPTDIR -- uses config directory if undefined)
#BASEDIR=$SCRIPTDIR
# File containing the list of domains to request certificates for (default: $BASEDIR/domains.txt)
#DOMAINS_TXT="${BASEDIR}/domains.txt"
DOMAINS_TXT="${BASEDIR}/domains"
# Output directory for generated certificates
#CERTDIR="${BASEDIR}/certs"
CERTDIR="/etc/ssl/letsencrypt"
# Directory for account keys and registration information
#ACCOUNTDIR="${BASEDIR}/accounts"
# Output directory for challenge-tokens to be served by webserver or deployed in HOOK (default: /var/www/dehydrated)
#WELLKNOWN="/var/www/dehydrated"
# Default keysize for private keys (default: 4096)
#KEYSIZE="4096"
# Path to openssl config file (default: <unset> - tries to figure out system default)
#OPENSSL_CNF=
# Program or function called in certain situations
#
# After generating the challenge-response, or after failed challenge (in this case altname is empty)
# Given arguments: clean_challenge|deploy_challenge altname token-filename token-content
#
# After successfully signing certificate
# Given arguments: deploy_cert domain path/to/privkey.pem path/to/cert.pem path/to/fullchain.pem
#
# BASEDIR and WELLKNOWN variables are exported and can be used in an external program
# default: <unset>
#HOOK=
# Chain clean_challenge|deploy_challenge arguments together into one hook call per certificate (default: no)
#HOOK_CHAIN="no"
# Minimum days before expiration to automatically renew certificate (default: 30)
#RENEW_DAYS="30"
# Regenerate private keys instead of just signing new certificates on renewal (default: yes)
#PRIVATE_KEY_RENEW="yes"
# Which public key algorithm should be used? Supported: rsa, prime256v1 and secp384r1
#KEY_ALGO=rsa
# E-mail to use during the registration (default: <unset>)
#CONTACT_EMAIL=
# Lockfile location, to prevent concurrent access (default: $BASEDIR/lock)
#LOCKFILE="${BASEDIR}/lock"
# Option to add CSR-flag indicating OCSP stapling to be mandatory (default: no)
#OCSP_MUST_STAPLE="no"

View File

@ -1,4 +0,0 @@
location /.well-known/acme-challenge {
alias /var/www/dehydrated;
}