Skip to content

Commit

Permalink
add authorized_keys field to octez node
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasochem committed Oct 23, 2023
1 parent afd2a76 commit 84eeb0a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions utils/config-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,9 @@ def fill_in_missing_accounts():
baker_values["bake_using_account"] = None
baker_values["bake_using_accounts"] = accts

# add authorized_keys if any, so signing requests can be auth'd
accts = [ *accts, *baker_values.get["authorized_keys"] ]

for acct in accts:
if acct not in ACCOUNTS:
print(f"Creating account: {acct}")
Expand Down

0 comments on commit 84eeb0a

Please sign in to comment.