Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions build-tools/cncluster
Original file line number Diff line number Diff line change
Expand Up @@ -1746,10 +1746,12 @@ function subcmd_backup_nodes() {
fi
migration_id=$1

if [ $# -eq 2 ]; then
# If only migration is set, backup everything, otherwise backup specified nodes
# Notably, prod networks which don't have sv-2 % sv-3
if [ $# -eq 1 ]; then
nodes="sv-1 sv-2 sv-3 sv-da-1 validator1 splitwell"
else
shift 2
shift 1
nodes="$*"
fi

Expand Down