diff options
author | Rasmus Dahlberg <rasmus@mullvad.net> | 2022-03-27 15:16:29 +0200 |
---|---|---|
committer | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2022-04-21 19:20:05 +0200 |
commit | 23346b27b8edac3fbe6f423a28064e1da180d6db (patch) | |
tree | 47874663a9b76937f4a395570cc898ba15af9c75 /integration/conf | |
parent | e5201da33e6c714bb0fc81438d4f212c25a48cf2 (diff) |
integration: add automatic setup and tear-down
Diffstat (limited to 'integration/conf')
-rw-r--r-- | integration/conf/client.config | 13 | ||||
-rw-r--r-- | integration/conf/sigsum.config | 6 | ||||
-rw-r--r-- | integration/conf/trillian.config | 7 |
3 files changed, 26 insertions, 0 deletions
diff --git a/integration/conf/client.config b/integration/conf/client.config new file mode 100644 index 0000000..e62588f --- /dev/null +++ b/integration/conf/client.config @@ -0,0 +1,13 @@ +#!/bin/bash + +# +# Setup instructions: +# +# - Use `sigsum-debug keygen` to get a private key +# - Set a domain hint that starts with "_sigsum_v0." +# - Configure domain hint to be aware of the output of the appropriate +# key hash. See `sigsum-debug pubkey` and `sigsum-debug keyhash`. +# + +cli_priv=29599fd81e266e161a9df977044dda89ab72fe9c8a98f23026f7fb63ee2feed9cda2517e17dcba133eb0e71bf77473f94a77d7e61b1de4e1e64adfd0938d6182 +cli_domain_hint=_sigsum_v0.testonly.rgdd.se diff --git a/integration/conf/sigsum.config b/integration/conf/sigsum.config new file mode 100644 index 0000000..c44ccc0 --- /dev/null +++ b/integration/conf/sigsum.config @@ -0,0 +1,6 @@ +#!/bin/bash + +ssrv_endpoint=localhost:6966 +ssrv_prefix=testonly +ssrv_shard_start=2009 +ssrv_interval=15s diff --git a/integration/conf/trillian.config b/integration/conf/trillian.config new file mode 100644 index 0000000..eaa6f6d --- /dev/null +++ b/integration/conf/trillian.config @@ -0,0 +1,7 @@ +#!/bin/bash + +tsrv_rpc=localhost:6962 +tseq_rpc=localhost:6963 + +tsrv_http=localhost:6964 +tseq_http=localhost:6965 |