8 lines
190 B
Bash
Executable File
8 lines
190 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 "$@"
|