7 lines
283 B
Bash
Executable File
7 lines
283 B
Bash
Executable File
#!/bin/bash
|
|
# Start AESM service required by Intel SGX SDK if it is not running
|
|
if ! pgrep "aesm_service" > /dev/null ; then
|
|
LD_LIBRARY_PATH="/opt/intel/sgx-aesm-service/aesm:$LD_LIBRARY_PATH" nohup /opt/intel/sgx-aesm-service/aesm/aesm_service --no-daemon >/dev/null 2>&1 &
|
|
fi
|
|
|