Skip to content

Commit

Permalink
Rename role to ssv
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne committed Aug 8, 2023
1 parent 97a7593 commit d816a15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ethd
Original file line number Diff line number Diff line change
Expand Up @@ -1756,7 +1756,7 @@ query_deployment() {
"What kind of deployment do you want to run?" 12 80 5 \
"node" "Ethereum node - consensus, execution and validator client" \
"rocket" "Validator client only - integrate with RocketPool" \
"blox" "Blox SSV node - consensus, execution and ssv-node" \
"ssv" "SSV node - consensus, execution and ssv-node" \
"rpc" "Ethereum RPC node - consensus and execution client" 3>&1 1>&2 2>&3)
fi

Expand Down Expand Up @@ -2209,7 +2209,7 @@ config() {
"validator" | "rocket")
query_validator_client
;;
"blox")
"ssv")
if [ ! -f "./ssv-config.yaml" ]; then
${__as_owner} cp ./ssv-config-sample.yaml ./ssv-config.yaml
fi
Expand Down Expand Up @@ -2263,7 +2263,7 @@ config() {
if [ -n "${EXECUTION_CLIENT+x}" ]; then
COMPOSE_FILE="${COMPOSE_FILE}:${EXECUTION_CLIENT}"
fi
if [ "${__deployment}" = "blox" ]; then
if [ "${__deployment}" = "ssv" ]; then
COMPOSE_FILE="${COMPOSE_FILE}:ssv.yml"
fi
if [ -n "${GRAFANA_CLIENT+x}" ]; then
Expand Down

0 comments on commit d816a15

Please sign in to comment.