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 53551d4 commit d123d41Copy full SHA for d123d41
hack/demo-env/gen-creds.sh
@@ -39,7 +39,7 @@ fi
39
touch "${creds_path}/users.control-plane"
40
41
for ag in agent-managed agent-autonomous; do
42
- password=$(pwmake 56)
43
- htpasswd -b -B "${creds_path}/users.control-plane" "${ag}" "${password}"
+ password=$($pwmake 56)
+ $htpasswd -b -B "${creds_path}/users.control-plane" "${ag}" "${password}"
44
echo "${ag}:${password}" > "${creds_path}/creds.${ag}"
45
-done
+done
0 commit comments