From 7fee69ca2228fc33f8cb1a792617e4779b2fa92b Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Tue, 21 Nov 2017 16:17:21 +0100 Subject: [PATCH] evoacme: remove $() --- evoacme/files/evoacme.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evoacme/files/evoacme.sh b/evoacme/files/evoacme.sh index 57f1c74d..ca1664ec 100755 --- a/evoacme/files/evoacme.sh +++ b/evoacme/files/evoacme.sh @@ -50,7 +50,7 @@ sed_cert_path_for_apache() { local search="^SSLCertificateFile.*$" local replace="SSLCertificateFile ${cert_path}" - if $(grep -qE "${search}" "${vhost_full_path}"); then + if grep -qE "${search}" "${vhost_full_path}"; then [ -w "${vhost_full_path}" ] || error "File ${vhost_full_path} is not writable" sed -i "s~${search}~${replace}~" "${vhost_full_path}" @@ -68,7 +68,7 @@ sed_cert_path_for_nginx() { local search="^ssl_certificate[^_].*$" local replace="ssl_certificate ${cert_path};" - if $(grep -qE "${search}" "${vhost_full_path}"); then + if grep -qE "${search}" "${vhost_full_path}"; then [ -w "${vhost_full_path}" ] || error "File ${vhost_full_path} is not writable" sed -i "s~${search}~${replace}~" "${vhost_full_path}"