Skip to content

KISS configuration management tool for executing local shell-scripts on remote hosts via SSH. ⭐️ Star to support our work!

License

Notifications You must be signed in to change notification settings

hashmap-kz/rconf

Repository files navigation

rconf

rconf is a command-line tool that executes local shell-scripts on multiple remote hosts via SSH.

License Go Report Card Workflow Status GitHub Issues Go Version Latest Release


Table of Contents


Features

  • 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

Installation

Manual Installation

  1. Download the latest binary for your platform from the Releases page.
  2. Place the binary in your system's PATH (e.g., /usr/local/bin).

Example installation script for Unix-Based OS (requirements: tar, curl, jq):

(
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
)

Homebrew installation

brew tap hashmap-kz/rconf
brew install rconf

Usage (see examples directory)

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

Flags

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)

How It Works

  1. The tool reads the provided scripts into memory.
  2. It establishes SSH and SFTP connections to each host.
  3. The scripts are uploaded to the remote host's /tmp/ directory.
  4. The scripts are executed remotely using sudo.
  5. Execution results are stored and displayed in a summary table.

Example Output

🚀 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

Logging

All execution details, including errors, are logged to the specified log file (ssh_execution.log).


Requirements

  • SSH access to remote hosts
  • Scripts must be shell scripts (.sh)

Design notes

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.


Contributing

We welcome contributions! To contribute: see the Contribution guidelines.


License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.


About

KISS configuration management tool for executing local shell-scripts on remote hosts via SSH. ⭐️ Star to support our work!

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published