Skip to content

Commit

Permalink
fix: parallel key generation (ethpandaops#423)
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa authored Jan 8, 2024
1 parent 933a313 commit 060fd8f
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,14 @@ def generate_valdiator_keystores_in_parallel(plan, mnemonic, participants):
stop_index,
generation_finished_filepath,
)
teku_permissions_cmd = (
" && chmod 777 -R " + output_dirpath + "/" + TEKU_KEYS_DIRNAME
)
raw_secret_permissions_cmd = (
" && chmod 0600 -R " + output_dirpath + "/" + RAW_SECRETS_DIRNAME
)
generate_keystores_cmd += teku_permissions_cmd
generate_keystores_cmd += raw_secret_permissions_cmd
all_generation_commands.append(generate_keystores_cmd)
all_output_dirpaths.append(output_dirpath)

Expand Down

0 comments on commit 060fd8f

Please sign in to comment.