Browse Source

fixes test scripts to avoid bash-isms

Moisés Guimarães 8 years ago
parent
commit
d817f0fbc8
5 changed files with 6 additions and 4 deletions
  1. 1 1
      certs/ocsp/ocspd0.sh
  2. 1 1
      certs/ocsp/ocspd1.sh
  3. 1 1
      certs/ocsp/ocspd2.sh
  4. 1 1
      certs/ocsp/ocspd3.sh
  5. 2 0
      certs/ocsp/renewcerts.sh

+ 1 - 1
certs/ocsp/ocspd0.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 openssl ocsp -port 22220 -nmin 1                \
     -index   certs/ocsp/index0.txt              \

+ 1 - 1
certs/ocsp/ocspd1.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 openssl ocsp -port 22221 -nmin 1                  \
     -index   certs/ocsp/index1.txt                \

+ 1 - 1
certs/ocsp/ocspd2.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 openssl ocsp -port 22222 -nmin 1                  \
     -index   certs/ocsp/index2.txt                \

+ 1 - 1
certs/ocsp/ocspd3.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 openssl ocsp -port 22223 -nmin 1                  \
     -index   certs/ocsp/index3.txt                \

+ 2 - 0
certs/ocsp/renewcerts.sh

@@ -1,3 +1,5 @@
+#!/bin/sh
+
 openssl req                \
     -new                   \
     -key  root-ca-key.pem  \