diff options
| -rw-r--r-- | tests/cert-install | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/tests/cert-install b/tests/cert-install index f2147d2..347570c 100644 --- a/tests/cert-install +++ b/tests/cert-install @@ -103,7 +103,7 @@ st="$(stat -c "%U:%G %#a" /etc/lacme/test3.pem)"  st="$(stat -c "%U:%G %#a" /etc/lacme/test3.crt)"  [ "$st" = "root:root 0644" ] -# chmod user +# chown user  openssl genpkey -algorithm RSA -out /etc/lacme/test4.key  cat >"/etc/lacme/lacme-certs.conf.d/test4.conf" <<- EOF  	[test4] @@ -120,7 +120,7 @@ st="$(stat -c "%U:%G %#a" /etc/lacme/test4.pem)"  st="$(stat -c "%U:%G %#a" /etc/lacme/test4.crt)"  [ "$st" = "nobody:root 0644" ] -# chmod user:group +# chown user:group  openssl genpkey -algorithm RSA -out /etc/lacme/test5.key  cat >"/etc/lacme/lacme-certs.conf.d/test5.conf" <<- EOF  	[test5] @@ -137,7 +137,7 @@ st="$(stat -c "%U:%G %#a" /etc/lacme/test5.pem)"  st="$(stat -c "%U:%G %#a" /etc/lacme/test5.crt)"  [ "$st" = "nobody:nogroup 0644" ] -# chown +# chmod  openssl genpkey -algorithm RSA -out /etc/lacme/test6.key  cat >"/etc/lacme/lacme-certs.conf.d/test6.conf" <<- EOF  	[test6] | 
