mirror of
https://github.com/nsacyber/HIRS.git
synced 2025-03-10 14:34:27 +00:00
14 lines
350 B
Bash
Executable File
14 lines
350 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Script to setup the ACA Docker Image for Integration Tests
|
|
|
|
set -e
|
|
|
|
# Prevent rebuild of packages if they already exist
|
|
cd /HIRS
|
|
echo "building and packagin the ACA"
|
|
if [ ! -d package/rpm/RPMS ]; then
|
|
./package/package.centos.sh
|
|
fi
|
|
echo "installing the ACA"
|
|
yum install -y package/rpm/RPMS/noarch/HIRS_AttestationCA*.el7.noarch.rpm |