drop unused secrets and validators vars

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-07-20 14:06:29 +02:00
parent 251a4c0cd5
commit f46cb5e974
No known key found for this signature in database
GPG Key ID: 09AA5403E54D9931
2 changed files with 0 additions and 9 deletions

View File

@ -9,9 +9,6 @@ beacon_node_netkey_path: '{{ beacon_node_data_path }}/netkey'
beacon_node_user: 'nimbus'
beacon_node_group: 'staff'
beacon_node_validators_dir: ""
beacon_node_secrets_dir: ""
beacon_node_build_service_name: 'build-{{ beacon_node_service_name }}'
beacon_node_build_timer_enabled: true
beacon_node_build_timer_timeout: 3600

View File

@ -16,12 +16,6 @@ RestartPreventExitStatus=1031
ExecStart={{ beacon_node_repo_path }}/build/nimbus_beacon_node \
--network={{ beacon_node_network }} \
--data-dir={{ beacon_node_data_path }} \
{% if beacon_node_validators_dir != "" %}
--validators-dir='{{ beacon_node_validators_dir }}' \
{% endif %}
{% if beacon_node_secrets_dir != "" %}
--secrets-dir='{{ beacon_node_secrets_dir }}' \
{% endif %}
{% for url in beacon_node_web3_urls | mandatory %}
--web3-url={{ url | mandatory }} \
{% endfor %}