Compare commits
No commits in common. "master" and "0.9.2" have entirely different histories.
6 changed files with 5 additions and 53 deletions
25
CHANGELOG.md
25
CHANGELOG.md
|
@ -1,25 +0,0 @@
|
||||||
# Changelog
|
|
||||||
|
|
||||||
## [0.9.2](https://github.com/ethauvin/namesilo-letsencrypt/tree/0.9.2) (2020-05-28)
|
|
||||||
|
|
||||||
[Full Changelog](https://github.com/ethauvin/namesilo-letsencrypt/compare/0.9.1...0.9.2)
|
|
||||||
|
|
||||||
**Closed issues:**
|
|
||||||
|
|
||||||
- Do not support multiple \_acme-challenge records [\#1](https://github.com/ethauvin/namesilo-letsencrypt/issues/1)
|
|
||||||
|
|
||||||
**Merged pull requests:**
|
|
||||||
|
|
||||||
- make python3.4 compatible. add subdomains support [\#2](https://github.com/ethauvin/namesilo-letsencrypt/pull/2) ([Junker](https://github.com/Junker))
|
|
||||||
|
|
||||||
## [0.9.1](https://github.com/ethauvin/namesilo-letsencrypt/tree/0.9.1) (2020-03-15)
|
|
||||||
|
|
||||||
[Full Changelog](https://github.com/ethauvin/namesilo-letsencrypt/compare/0.9.0...0.9.1)
|
|
||||||
|
|
||||||
## [0.9.0](https://github.com/ethauvin/namesilo-letsencrypt/tree/0.9.0) (2019-04-30)
|
|
||||||
|
|
||||||
[Full Changelog](https://github.com/ethauvin/namesilo-letsencrypt/compare/8a91146faebd196b223f7653e470428130f26246...0.9.0)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
|
|
@ -1,6 +1,6 @@
|
||||||
# NameSilo Let's Encrypt
|
# NameSilo Let's Encrypt
|
||||||
|
|
||||||
[](https://opensource.org/licenses/BSD-3-Clause)
|
[](http://opensource.org/licenses/BSD-3-Clause)
|
||||||
[](https://www.python.org/)
|
[](https://www.python.org/)
|
||||||
|
|
||||||
Python scripts (hook) to automate obtaining [Let's Encrypt](https://letsencrypt.org/) certificates,
|
Python scripts (hook) to automate obtaining [Let's Encrypt](https://letsencrypt.org/) certificates,
|
||||||
|
@ -17,13 +17,14 @@ pip install tldextract untangle
|
||||||
|
|
||||||
Download the [latest release](https://github.com/ethauvin/namesilo-letsencrypt/releases) archive and expand it in the desired directory.
|
Download the [latest release](https://github.com/ethauvin/namesilo-letsencrypt/releases) archive and expand it in the desired directory.
|
||||||
|
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
Add your [NameSilo API key](https://www.namesilo.com/account/api-manager)
|
Add your [NameSilo API key](https://www.namesilo.com/account_api.php)
|
||||||
to the top of the `config.py` file:
|
to the top of the `config.py` file:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
# Get your API Key from: https://www.namesilo.com/account/api-manager
|
# Get your API Key from: https://www.namesilo.com/account_api.php
|
||||||
apikey = "YOUR_API_KEY"
|
apikey = "YOUR_API_KEY"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Get your API Key from: https://www.namesilo.com/account/api-manager
|
# Get your API Key from: https://www.namesilo.com/account_api.php
|
||||||
apikey = "YOUR_API_KEY"
|
apikey = "YOUR_API_KEY"
|
||||||
# Minutes to wait for DNS changes to complete.
|
# Minutes to wait for DNS changes to complete.
|
||||||
wait = 25
|
wait = 25
|
||||||
|
|
24
release.sh
24
release.sh
|
@ -1,24 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
RELEASE=release
|
|
||||||
|
|
||||||
if [ $# != 1 ];
|
|
||||||
then
|
|
||||||
echo "Usage: $(basename "$0") <version>"
|
|
||||||
exit 2
|
|
||||||
else
|
|
||||||
if ! [ -d "$RELEASE" ]
|
|
||||||
then
|
|
||||||
mkdir "$RELEASE"
|
|
||||||
fi
|
|
||||||
PROJECT=$(basename "$(pwd)")
|
|
||||||
DIR="${PROJECT}-${1}"
|
|
||||||
mkdir "$DIR"
|
|
||||||
cp ./*.py ./*.md ./*.txt "$DIR"
|
|
||||||
dos2unix "$DIR"/*.*
|
|
||||||
touch "$DIR" "$DIR"/*.*
|
|
||||||
tar -czvf "${RELEASE}/${DIR}.tar.gz" "$DIR"
|
|
||||||
zip --to-crlf -r "${RELEASE}/${DIR}.zip" "$DIR"
|
|
||||||
touch "$RELEASE"/*.*
|
|
||||||
rm -rf "${DIR}"
|
|
||||||
fi
|
|
Binary file not shown.
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue