diff options
author | Manjunath Ranganathaiah <manjunath.ranganathaiah@intel.com> | 2018-09-11 09:11:06 -0700 |
---|---|---|
committer | Manjunath Ranganathaiah <manjunath.ranganathaiah@intel.com> | 2018-09-13 13:05:29 -0700 |
commit | c8719c06244e18355db7c52e5deee4acb398f5f1 (patch) | |
tree | 82523c1453d1d89acbeeecc8d6bd1574c437c8e7 /bin/base/application.sh | |
parent | 8420cc7411f57c6df9d25ca48f0dd942b3cbe64a (diff) |
Add import scripts to base image
These scripts imports the CA key to either tpm or
softhsm. Updates the pkcs11 config file and adds
the required config for softhsm
Change-Id: If45cfb514756bf4ab03081d458ed728921fa1d51
Issue-ID: AAF-483
Signed-off-by: Manjunath Ranganathaiah <manjunath.ranganathaiah@intel.com>
Diffstat (limited to 'bin/base/application.sh')
-rwxr-xr-x | bin/base/application.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/base/application.sh b/bin/base/application.sh new file mode 100755 index 0000000..cb7db08 --- /dev/null +++ b/bin/base/application.sh @@ -0,0 +1,10 @@ +#!/bin/bash + + +# This script receives 2 arguments +applicationlibrary=$1 +SoftHSMv2SlotID=$2 + +# Setting up the pkcs11 config file +echo "library = ${applicationlibrary}" >> /opt/app/osaaf/local/org.osaaf.aaf.cm.pkcs11 +echo "slot = ${SoftHSMv2SlotID}" >> /opt/app/osaaf/local/org.osaaf.aaf.cm.pkcs11 |