Lines Matching +full:- +full:- +full:local +full:- +full:container
1 #!/bin/bash -eu
3 # compat-in-docker.sh
6 # -------
7 # This runs compat.sh in a Docker container.
10 # ---------------
12 # correspond to an executable inside the Docker container. The special
14 # for the installations inside the container.
17 # - scripts/docker_env.sh for general Docker prerequisites and other information.
18 # - compat.sh for notes about invocation of that script.
21 # SPDX-License-Identifier: Apache-2.0
27 # http://www.apache.org/licenses/LICENSE-2.0
37 case "${OPENSSL_CMD:-default}" in
38 "legacy") export OPENSSL_CMD="/usr/local/openssl-1.0.1j/bin/openssl";;
39 "next") export OPENSSL_CMD="/usr/local/openssl-1.1.1a/bin/openssl";;
43 case "${GNUTLS_CLI:-default}" in
44 "legacy") export GNUTLS_CLI="/usr/local/gnutls-3.3.8/bin/gnutls-cli";;
45 "next") export GNUTLS_CLI="/usr/local/gnutls-3.7.2/bin/gnutls-cli";;
49 case "${GNUTLS_SERV:-default}" in
50 "legacy") export GNUTLS_SERV="/usr/local/gnutls-3.3.8/bin/gnutls-serv";;
51 "next") export GNUTLS_SERV="/usr/local/gnutls-3.7.2/bin/gnutls-serv";;
56 -e M_CLI \
57 -e M_SRV \
58 -e GNUTLS_CLI \
59 -e GNUTLS_SERV \
60 -e OPENSSL_CMD \
61 -e OSSL_NO_DTLS \