feat: add duckdns -> DuckDNS.sh alias

This commit is contained in:
AJ ONeal
2023-01-15 03:25:02 +00:00
parent 25b003996a
commit 40f37cb916
2 changed files with 26 additions and 0 deletions

15
duckdns/README.md Normal file
View File

@@ -0,0 +1,15 @@
---
title: DuckDNS (DuckDNS.sh alias)
homepage: https://webinstall.dev/duckdns.sh
tagline: |
Alias for https://webinstall.dev/duckdns.sh
alias: duckdns.sh
description: |
See https://webinstall.dev/duckdns.sh
---
`duckdns` is a reserved installer name.
Currently an alias for <https://webinstall.dev/duckdns.sh>.
That may change in the future.

11
duckdns/install.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
set -e
set -u
echo "'duckdns@${WEBI_TAG:-stable}' is reserved for future use."
echo
echo "Did you mean 'duckdns.sh@${WEBI_VERSION-}'?"
WEBI_HOST=${WEBI_HOST:-"https://webi.sh"}
echo ""
echo " curl -fsSL '$WEBI_HOST/duckdns.sh@${WEBI_VERSION-}' | sh"
exit 1