From 72c851c1054b9a7048e06c587a36c316bb66fbcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Hertzog?= Date: Mon, 2 Jan 2017 20:35:38 +0100 Subject: [PATCH] Add /usr/bin to PATH --- letsencrypt-sh/files/hook | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt-sh/files/hook b/letsencrypt-sh/files/hook index 50cf2a4..73f83c6 100644 --- a/letsencrypt-sh/files/hook +++ b/letsencrypt-sh/files/hook @@ -5,7 +5,7 @@ {% from "letsencrypt-sh/map.jinja" import letsencrypt_sh with context %} {% if letsencrypt_sh.hook_service_to_reload %} if [ "$1" = "deploy_cert" ]; then - export PATH="/sbin:/bin:/usr/sbin:/sbin" + export PATH="/sbin:/bin:/usr/sbin:/usr/bin" service {{ letsencrypt_sh.hook_service_to_reload }} reload fi {% else %}