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