mirror of https://github.com/samply/bridgehead.git
9 lines
196 B
Bash
9 lines
196 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
function nngmSetup() {
|
||
|
if [ -n "$NNGM_CTS_APIKEY" ]; then
|
||
|
log INFO "nNGM setup detected -- will start nNGM Connector."
|
||
|
OVERRIDE+=" -f ./$PROJECT/modules/nngm-compose.yml"
|
||
|
fi
|
||
|
}
|