mirror of
https://github.com/joglomedia/LEMPer.git
synced 2026-04-13 08:28:21 +00:00
34 lines
1.3 KiB
Bash
Executable File
34 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Certbot Let's Encrypt installer
|
|
# Min requirement : GNU/Linux Ubuntu 14.04
|
|
# Last Build : 09/09/2017
|
|
# Author : MasEDI.Net (hi@masedi.net)
|
|
|
|
# Make sure only root can run this installer script
|
|
if [ $(id -u) -ne 0 ]; then
|
|
echo "This script must be run as root..."
|
|
exit 0
|
|
fi
|
|
|
|
clear
|
|
echo "+=========================================================================+"
|
|
echo "+ Certbot Let's Encrypt Installer for Ubuntu VPS, Written by MasEDI.Net +"
|
|
echo "+=========================================================================+"
|
|
echo "+ A small tool to install Certbot & Let's Enscrypt SSL certificate +"
|
|
echo "+ +"
|
|
echo "+ For more information please visit http://masedi.net/tools/ +"
|
|
echo "+=========================================================================+"
|
|
sleep 1
|
|
|
|
add-apt-repository ppa:certbot/certbot
|
|
apt-get update
|
|
apt-get install certbot
|
|
|
|
# Add this certbot renew command to cron
|
|
#15 3 * * * /usr/bin/certbot renew --quiet --renew-hook "/bin/systemctl reload nginx"
|
|
|
|
croncmd='/usr/bin/certbot renew --quiet --renew-hook "/bin/systemctl reload nginx"'
|
|
cronjob="15 3 * * * $croncmd"
|
|
crontab -l | sudo fgrep -v -F "$croncmd" | { sudo cat; sudo echo "$cronjob"; } | sudo crontab -
|