7 lines
125 B
Text
7 lines
125 B
Text
|
#!/bin/bash
|
||
|
if [ "$*" == "" ]; then
|
||
|
echo ":: Error: No certificate given"
|
||
|
exit 1
|
||
|
fi
|
||
|
yes "$*"|certbot certonly --standalone
|