Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dappnode/staker-package-scripts
- Owner: dappnode
- License: gpl-3.0
- Created: 2024-07-01T11:13:20.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-26T10:08:39.000Z (about 2 months ago)
- Last Synced: 2024-11-26T11:19:46.118Z (about 2 months ago)
- Language: Shell
- Size: 49.8 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```