13 lines
181 B
Plaintext
13 lines
181 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
||
|
set -x
|
||
|
fi
|
||
|
|
||
|
set -eu
|
||
|
set -o pipefail
|
||
|
|
||
|
if [ -n "${DIB_IPA_CERT:=}" ]; then
|
||
|
cp $DIB_IPA_CERT $TMP_HOOKS_PATH/server.pem
|
||
|
fi
|