Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dappnode/staker-package-scripts

Common shell scripts for Staker packages to be sourced in their entrypoints
https://github.com/dappnode/staker-package-scripts

Last synced: 27 days ago
JSON representation

Common shell scripts for Staker packages to be sourced in their entrypoints

Awesome Lists containing this project

README

        

# Staker package scripts

This repo contains some utility functions in shell script to help with the correct usage and configuration of any execution or consensus dappnode staker package

**Consensus tools:**

Shell script including a set of handy functions to be used in the entrypoint of both `beacon-chain` and `validator` services of all consensus client packages

**Execution tools:**

Shell script including a set of handy functions to be used in the entrypoint of any execution package

### Example of usage (consensus-tools.sh)

- Add script to `/etc/profile.d` and load it in the entrypoint script:

```Docker
ADD https://raw.githubusercontent.com/dappnode/staker-package-scripts/${STAKER_SCRIPTS_VERSION}/consensus-tools.sh /etc/profile.d/consensus-tools.sh
```

```Shell
#!/bin/sh

. /etc/profile
```