File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 23
23
24
24
# Create necessary directories
25
25
mkdir -p " $NETHERMIND_DATA_DIR "
26
+ mkdir -p " $( dirname " $JWT_SECRET_FILE " ) "
26
27
27
28
# Write the JWT secret
28
29
if [[ -z " $OP_NODE_L2_ENGINE_AUTH_RAW " ]]; then
29
30
echo " Expected OP_NODE_L2_ENGINE_AUTH_RAW to be set" 1>&2
30
31
exit 1
31
32
fi
32
- echo " $OP_NODE_L2_ENGINE_AUTH_RAW " > " $OP_NODE_L2_ENGINE_AUTH "
33
+ echo " $OP_NODE_L2_ENGINE_AUTH_RAW " > " $JWT_SECRET_FILE "
33
34
34
35
# Additional arguments based on environment variables
35
36
if [ " ${OP_NETHERMIND_BOOTNODES+x} " = x ]; then
@@ -54,7 +55,7 @@ exec ./nethermind \
54
55
--JsonRpc.Host=0.0.0.0 \
55
56
--JsonRpc.WebSocketsPort=" $WS_PORT " \
56
57
--JsonRpc.Port=" $RPC_PORT " \
57
- --JsonRpc.JwtSecretFile=" $OP_NODE_L2_ENGINE_AUTH " \
58
+ --JsonRpc.JwtSecretFile=" $JWT_SECRET_FILE " \
58
59
--JsonRpc.EngineHost=0.0.0.0 \
59
60
--JsonRpc.EnginePort=" $AUTHRPC_PORT " \
60
61
--HealthChecks.Enabled=true \
You can’t perform that action at this time.
0 commit comments