mirror of
https://github.com/wmnnd/nginx-certbot
synced 2023-04-20 18:47:46 +08:00
Root privileges are now optional
This commit is contained in:
parent
d5dd11613e
commit
cd61ed5255
@ -7,7 +7,12 @@ email="" # Adding a valid address is strongly recommended
|
|||||||
staging=0 # Set to 1 if you're testing your setup to avoid hitting request limits
|
staging=0 # Set to 1 if you're testing your setup to avoid hitting request limits
|
||||||
|
|
||||||
if [ "$EUID" -ne 0 ]; then
|
if [ "$EUID" -ne 0 ]; then
|
||||||
echo "Please run init-letsencrypt.sh as root." && exit
|
read -p "You executed this script without root privileges, do you want to continue? (WARNING: script won't be able to delete generated Let's Encrypt TLS certificates) (Y/n) " decision
|
||||||
|
case $decision in
|
||||||
|
[Y]* ) ;;
|
||||||
|
[n]* ) exit;;
|
||||||
|
* ) echo "Please choose the right variant (Y/n).";;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user