Explorar el Código

* Bug: en instalarLetsEncrypt()

Guzmán Castanedo Villalba hace 5 años
padre
commit
d5fe4ab6e9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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
 }