8 lines
180 B
Bash
Executable File
8 lines
180 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Update PCCS_URL
|
|
line=$(grep -n "PCCS_URL" /etc/sgx_default_qcnl.conf | cut -d ":" -f 1)
|
|
sed -i "${line}c PCCS_URL=${PCCS_URL}" /etc/sgx_default_qcnl.conf
|
|
|
|
exec "$@"
|