Browse Source

* Bug: en instalarLetsEncrypt()

Guzmán Castanedo Villalba 5 years ago
parent
commit
d5fe4ab6e9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      install

+ 1 - 1
install

@@ -1521,7 +1521,7 @@ instalarLetsEncrypt() {
 		echo -en "# /etc/cron.d/certbot: certbot autorenew the certificates twice a day\n" > /etc/cron.d/certbot
 		echo -en "SHELL=/bin/sh\n" >> /etc/cron.d/certbot
 		echo -en "PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin\n\n" >> /etc/cron.d/certbot
-		echo -en "# Job start twice per day (4am & 2pm) in a random minute" >> /etc/cron.d/certbot
+		echo -en "# Job start twice per day (4am & 2pm) in a random minute\n" >> /etc/cron.d/certbot
 		echo -en "0 4,14 * * * root python -c 'import random; import time; time.sleep(random.random() * 3600)' && certbot renew\n" >> /etc/cron.d/certbot
 	fi
 }