From b4f90e080fb5642c67391f09d12cd3a1e4c1221e Mon Sep 17 00:00:00 2001 From: richard Date: Sat, 6 Jun 2020 22:33:41 -0400 Subject: [PATCH] fix typo in sslproxy renew command --- dockerfiles/services/sslproxy/cli/certbot/renew | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/services/sslproxy/cli/certbot/renew b/dockerfiles/services/sslproxy/cli/certbot/renew index 0fb8e3f..11159cb 100755 --- a/dockerfiles/services/sslproxy/cli/certbot/renew +++ b/dockerfiles/services/sslproxy/cli/certbot/renew @@ -36,7 +36,7 @@ test_new_certs() { | grep 'Timestamp :' } -retart_nginx() { +restart_nginx() { export DOCKER_HOST=${DOCKER_HOST:-'dkhost:2376'} echo restarting nginx @@ -89,7 +89,7 @@ do exit 0 ;; n) - retart_nginx + restart_nginx exit 0 ;; :)