We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e11c4d commit 67d1a32Copy full SHA for 67d1a32
init-plain/opt/qnib/entry/11-qnib-secrets.env
@@ -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