rconf is a command-line tool that executes local shell-scripts on multiple remote hosts via SSH.
- Execute multiple shell scripts on multiple remote hosts via SSH
- No complex configs, no intricate YAML, no DSLs - just plain shell and a single binary
- Concurrent execution with worker limits
- Structured logging
- Secure authentication using SSH private keys
- Automatic script upload and execution
- Summary table of execution results
- Download the latest binary for your platform from the Releases page.
- Place the binary in your system's
PATH
(e.g.,/usr/local/bin
).
(
set -euo pipefail
OS="$(uname | tr '[:upper:]' '[:lower:]')"
ARCH="$(uname -m | sed -e 's/x86_64/amd64/' -e 's/\(arm\)\(64\)\?.*/\1\2/' -e 's/aarch64$/arm64/')"
TAG="$(curl -s https://api.github.com/repos/hashmap-kz/rconf/releases/latest | jq -r .tag_name)"
curl -L "https://github.com/hashmap-kz/rconf/releases/download/${TAG}/rconf_${TAG}_${OS}_${ARCH}.tar.gz" |
tar -xzf - -C /usr/local/bin && \
chmod +x /usr/local/bin/rconf
)
brew tap hashmap-kz/rconf
brew install rconf
rconf \
--pkey /path/to/private_key \
--filename /path/to/script1.sh,/path/to/script-dir/ \
--filename https://shared.company.com/path/to/script.sh \
--conn backup@10.40.240.193?sudo=false \
--conn myuser@10.40.240.189:2222 \
--workers 5 \
--log execution.log
Flag | Short | Description |
---|---|---|
--pkey |
-i |
Path to SSH private key (required) |
--pkey-pass |
Passphrase to SSH private key (required when pkey is password-protected) | |
--filename |
-f |
Comma-separated list of script paths, directories or URL's (required) |
--conn |
-H |
Comma-separated list of remote hosts (required). |
Format: username:password@host:port?sudo=false&key2=value2 |
||
Password and Port are optional | ||
Query parameters are optional | ||
--recursive |
-R |
"Process the directory used in -f, --filename recursively (default: true) |
--workers |
-w |
Maximum concurrent SSH connections (default: 2) |
--log |
-l |
Log file path (default: ssh_execution.log ) |
- The tool reads the provided scripts into memory.
- It establishes SSH and SFTP connections to each host.
- The scripts are uploaded to the remote host's
/tmp/
directory. - The scripts are executed remotely using
sudo
. - Execution results are stored and displayed in a summary table.
🚀 Starting script execution...
[HOST: 10.40.240.189] 🔄 Connecting...
[HOST: 10.40.240.193] 🔄 Connecting...
[HOST: 10.40.240.193] ⏳ Uploading scripts/00-packages.sh...
[HOST: 10.40.240.193] 🚀 Executing scripts/00-packages.sh...
[HOST: 10.40.240.189] ⏳ Uploading scripts/00-packages.sh...
[HOST: 10.40.240.189] 🚀 Executing scripts/00-packages.sh...
[HOST: 10.40.240.193] ✅ Successfully executed scripts/00-packages.sh
[HOST: 10.40.240.193] ⏳ Uploading scripts/01-timezone.sh...
[HOST: 10.40.240.193] 🚀 Executing scripts/01-timezone.sh...
[HOST: 10.40.240.189] ✅ Successfully executed scripts/00-packages.sh
[HOST: 10.40.240.189] ⏳ Uploading scripts/01-timezone.sh...
[HOST: 10.40.240.189] 🚀 Executing scripts/01-timezone.sh...
[HOST: 10.40.240.193] ✅ Successfully executed scripts/01-timezone.sh
[HOST: 10.40.240.193] ⏳ Uploading scripts/02-locale.sh...
[HOST: 10.40.240.193] 🚀 Executing scripts/02-locale.sh...
[HOST: 10.40.240.189] ✅ Successfully executed scripts/01-timezone.sh
[HOST: 10.40.240.189] ⏳ Uploading scripts/02-locale.sh...
[HOST: 10.40.240.189] 🚀 Executing scripts/02-locale.sh...
[HOST: 10.40.240.189] ✅ Successfully executed scripts/02-locale.sh
[HOST: 10.40.240.189] 🔄 Disconnecting...
[HOST: 10.40.240.193] ✅ Successfully executed scripts/02-locale.sh
[HOST: 10.40.240.193] 🔄 Disconnecting...
=== Execution Summary ===
HOST RESULT
10.40.240.189 Success
10.40.240.193 Success
All execution details, including errors, are logged to the specified log file (ssh_execution.log
).
- SSH access to remote hosts
- Scripts must be shell scripts (
.sh
)
The goal is to keep everything as simple as possible.
If you have a bunch of shell scripts and need to run them on multiple remote hosts - whether or not you're using a CI/CD tool - rconf has you covered.
No complex setup, no tricky configurations.
Got a fleet of VMs and just need to tweak something across all of them? Skip the messy YAML and dependency headaches - just run your commands remotely with ease.
We welcome contributions! To contribute: see the Contribution guidelines.
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.