1
0
mirror of https://github.com/wmnnd/nginx-certbot synced 2023-04-20 18:47:46 +08:00

Add error when init-letsencrypt.sh runs doesn't run as root

This commit is contained in:
Yaroslav 2018-12-18 00:01:41 +04:00
parent 38c07f2fcb
commit a85799cfa7

View File

@ -6,6 +6,11 @@ data_path="./data/certbot"
email="" # Adding a valid address is strongly recommended
staging=0 # Set to 1 if you're testing your setup to avoid hitting request limits
if [ "$EUID" -ne 0 ]; then
echo "Please run init-letsencrypt.sh as root." && exit
fi
echo "### Preparing directories in $data_path ..."
if [ -d "$data_path" ]; then
read -p "There is already folder with certbot data, do you want to remove it? (WARNING: removing folder will remove all data which is stored in the $data_path) (Y/n) " decision