ironic-python-agent-builder/dib/ironic-python-agent-ramdisk/extra-data.d/15-ssl-ca-copy
Nisha Brahmankar b29326a499 Copies the "ironic-agent" element from DIB
Copies "ironic-agent" element from DIB and addition
of a new bash script to build the image using DIB.

Change-Id: If392f793ed1b5d902b541fe89299648fae16e427
Task: 30072
Story: 2005114
2019-08-01 23:23:37 +05:30

13 lines
191 B
Bash
Executable File

#!/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/ipa-trusted-cert.pem
fi