Skip to content

Commit 67d1a32

Browse files
add qnib-secrets
1 parent 1e11c4d commit 67d1a32

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
ENV_DIR=${ENV_DIR:-/opt/qnib/env}
4+
########
5+
## Check for /opt/qnib/env and source them as ENV variables
6+
mkdir -p ${ENV_DIR}
7+
for sec in $(find ${ENV_DIR} -type f);do
8+
echo "[II] Source environment variables from '${sec}'"
9+
source ${sec}
10+
done

0 commit comments

Comments
 (0)