| 1234567891011121314151617181920212223242526272829303132333435 |
- From e4937e6ed3a13408f8e0f57124aa784de4299147 Mon Sep 17 00:00:00 2001
- From: Alexander Barton <alex@barton.de>
- Date: Sat, 10 Feb 2024 00:14:33 +0100
- Subject: [PATCH 19/20] S2S-TLS: Fix "make check" in separate build directory
- (cherry picked from commit b9d6a2f49c4b3607c69b298cc770c0c945f627f6)
- ---
- src/testsuite/prep-server3 | 9 +++++----
- src/testsuite/switch-server3 | 9 ++++-----
- 2 files changed, 9 insertions(+), 9 deletions(-)
- --- a/src/testsuite/prep-server3
- +++ b/src/testsuite/prep-server3
- @@ -1,4 +1,5 @@
- -#!/bin/sh
- -cp ssl/cert-my-first-domain-tld.pem ssl/cert.pem
- -cp ssl/key-my-first-domain-tld.pem ssl/key.pem
- -cp ssl/dhparams-my-first-domain-tld.pem ssl/dhparams.pem
- +#!/bin/sh -e
- +mkdir -p ssl
- +cp "${srcdir}"/ssl/cert-my-first-domain-tld.pem ssl/cert.pem
- +cp "${srcdir}"/ssl/key-my-first-domain-tld.pem ssl/key.pem
- +cp "${srcdir}"/ssl/dhparams-my-first-domain-tld.pem ssl/dhparams.pem
- --- a/src/testsuite/switch-server3
- +++ b/src/testsuite/switch-server3
- @@ -1,5 +1,4 @@
- -#!/bin/sh
- -cp ssl/cert-my-second-domain-tld.pem ssl/cert.pem
- -cp ssl/key-my-second-domain-tld.pem ssl/key.pem
- -cp ssl/dhparams-my-second-domain-tld.pem ssl/dhparams.pem
- -# -eof-
- +#!/bin/sh -e
- +cp "${srcdir}"/ssl/cert-my-second-domain-tld.pem ssl/cert.pem
- +cp "${srcdir}"/ssl/key-my-second-domain-tld.pem ssl/key.pem
- +cp "${srcdir}"/ssl/dhparams-my-second-domain-tld.pem ssl/dhparams.pem
|