Skip to content

Commit 20765c8

Browse files
authored
Merge pull request #2 from travispaul/master
Add option to supply path to OpenSSL config
2 parents 5f32f2c + af18c22 commit 20765c8

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ If you want to see how a completed stack looks, try the demo first.
4646

4747
-p, --pgp-key use this PGP key in lieu of creating a new one
4848
-k, --tls-key use this TLS key file in lieu of creating a CA and cert
49-
-c, --tls-cert use this TLS cert file in lieu of creating a CA and cert-
49+
-c, --tls-cert use this TLS cert file in lieu of creating a CA and cert
5050
-f, --compose-file use this Docker Compose manifest
51+
-o, --openssl-conf use this OpenSSL config file
5152

5253
**`setup.sh demo clean`:** Cleans up the demo PGP keys and CA.
5354

setup.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@ setup.sh demo:
6868
6969
-p, --pgp-key use this PGP key in lieu of creating a new one
7070
-k, --tls-key use this TLS key file in lieu of creating a CA and cert
71-
-c, --tls-cert use this TLS cert file in lieu of creating a CA and cert-
71+
-c, --tls-cert use this TLS cert file in lieu of creating a CA and cert
7272
-f, --compose-file use this Docker Compose manifest
73+
-o, --openssl-conf use this OpenSSL config file
7374
7475
setup.sh demo clean:
7576
Cleans up the demo PGP keys and CA.
@@ -558,6 +559,7 @@ demo() {
558559
-c | --tls-cert ) tls_cert=$2; shift 2;;
559560
-a | --ca-cert ) ca_cert=$2; shift 2;;
560561
-f | --compose-file ) COMPOSE_FILE=$2; shift 2;;
562+
-o | --openssl-conf ) openssl_config=$2; shift 2;;
561563
_ca | check_* | clean | help) cmd=$1; shift 1; $cmd; exit;;
562564
*) break;;
563565
esac

0 commit comments

Comments
 (0)