From ee137f96f7a9b827e57435128bc991b1818db5dc Mon Sep 17 00:00:00 2001 From: Diego Date: Fri, 1 Sep 2023 14:59:33 +0200 Subject: [PATCH] Update security path --- op-node/entrypoint.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/op-node/entrypoint.sh b/op-node/entrypoint.sh index 9cb7eb6..75d4f4a 100755 --- a/op-node/entrypoint.sh +++ b/op-node/entrypoint.sh @@ -22,18 +22,18 @@ esac case $L2_CLIENT in "op-geth.dnp.dappnode.eth") L2_ENGINE="http://op-geth.dappnode:8551" - JWT_PATH="/config/security/op-geth/jwtsecret.hex" + JWT_PATH="/security/op-geth/jwtsecret.hex" ;; "op-erigon.dnp.dappnode.eth") L2_ENGINE="http://op-erigon.dappnode:8551" - JWT_PATH="/config/security/op-erigon/jwtsecret.hex" + JWT_PATH="/security/op-erigon/jwtsecret.hex" ;; *) echo "Unknown value for L2_CLIENT: $L2_CLIENT" L2_ENGINE=$L2_CLIENT mkdir -p /config/security/user - echo $USER_JWT >/config/security/user/jwtsecret.hex - JWT_PATH="/config/security/user/jwtsecret.hex" + echo $USER_JWT >/security/user/jwtsecret.hex + JWT_PATH="/security/user/jwtsecret.hex" ;; esac