9 lines
152 B
Plaintext
9 lines
152 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ "$#" -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
|
||
|
echo Usage: "$0" DOMAIN
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
acme.sh --issue --nginx -d "$@"
|