File: run_xjson_server.sh

package info (click to toggle)
golang-github-google-certificate-transparency 0.0~git20160709.0.0f6e3d1~ds1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 5,676 kB
  • sloc: cpp: 35,278; python: 11,838; java: 1,911; sh: 1,885; makefile: 950; xml: 520; ansic: 225
file content (45 lines) | stat: -rwxr-xr-x 1,127 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env bash

# This script is mostly so we can test the test script for a standalone server.
# <storage file> is the sqlite3 database for the log.
# <certificate hash directory> contains the OpenSSL hashes for the
# accepted root certs.

set -e

if [ "$OPENSSLDIR" != "" ]; then
  MY_OPENSSL="$OPENSSLDIR/apps/openssl"
  export LD_LIBRARY_PATH=$OPENSSLDIR:$LD_LIBRARY_PATH
fi

if [ ! $MY_OPENSSL ]; then
# Try to use the system OpenSSL
  MY_OPENSSL=openssl
fi

if [ $# -lt 1 ]
then
  echo "$0 <storage file>"
  exit 1
fi

STORAGE=$1
KEY="testdata/ct-server-key.pem"
shift 1

# if [ ! -e $HASH_DIR ]
# then
#   echo "$HASH_DIR doesn't exist, creating"
#   mkdir $HASH_DIR
#   CERT="`pwd`/testdata/ca-cert.pem"
#   hash=`$MY_OPENSSL x509 -in $CERT -hash -noout`
#   ln -s $CERT $HASH_DIR/$hash.0
# fi

export TSAN_OPTIONS=${TSAN_OPTIONS:-log_path=tsan_log suppressions=../cpp/tsan_suppressions external_symbolizer_path=/usr/bin/llvm-symbolizer-3.4}

../cpp/server/xjson-server --port=8888 --key=$KEY \
  --logtostderr=true \
  --guard_window_seconds=5 \
  --tree_signing_frequency_seconds=10 --leveldb_db=$STORAGE \
  $*