Simple user access management for Linux servers. Like apt install but for people.
Project description
addy ๐งโ๐ป๐ โ Git-driven SSH Access Control
Simple user access management for Linux servers. Like apt install but for people.
Inspired by Yahoo's internal yinst package manager that made server user management effortless.
After years of manually copying SSH keys and editing sudoers files across servers, I built addy to treat user access like package management. Want to give Alice access? addy install user/alice. Need to grant sudo? addy install sudo/alice. Your Git repository becomes the single source of truth.
โจ Why I Built This
- ๐ฏ Package-like Simplicity: Why should user management be harder than
apt install? - ๐ Git-Powered Audit: Every access change is version controlled and traceable
- ๐ Zero Infrastructure: No databases, no services - just Git and simple commands
- ๐ฆ Familiar Workflow: Your team already uses Git - now use it for access too
- ๐ Production-Ready: Idempotent by design, tested in real environments
- ๐งช Well-Tested: 90%+ test coverage because security tools should be reliable
๐ Quick Start
Installation
# Install from PyPI (recommended)
pip install addy
# Or quick install script
curl -fsSL https://raw.githubusercontent.com/abhinavs/addy/main/install.sh | bash
# Or install from source
git clone https://github.com/abhinavs/addy.git
cd addy
pip install -e .
Setup Your Git Repository
Create a Git repository with your team's SSH keys:
your-addy-users-repo/
โโโ users/
โโโ alice.pub
โโโ bob.pub
โโโ charlie.pub
Each .pub file contains a user's SSH public key.
Configure Addy
# Set your Git repository (can be private)
sudo addy config set git-repo git@github.com:your-org/your-addy-users-repo.git
# For private repos, set up a deploy key
sudo addy config set ssh-key-path /etc/addy/deploy_key
Grant Access
# Give SSH access
sudo addy install user/alice
# Grant sudo privileges
sudo addy install sudo/alice
# Remove access
sudo addy remove user/alice
sudo addy remove sudo/alice
๐ง How It Works
When you run addy install user/alice:
- Syncs the latest Git repository
- Finds
users/alice.pubin the repo - Creates Linux user
alice(if needed) - Installs SSH key to
~alice/.ssh/authorized_keys - Sets proper permissions and ownership
When you run addy install sudo/alice:
- Checks that user
aliceexists - Creates
/etc/sudoers.d/alicewith passwordless sudo - Validates the sudoers file for safety
๐ Features
Core Functionality
- โ User Management: Create users and install SSH keys
- โ Sudo Management: Grant/revoke passwordless sudo access
- โ Git Integration: Pull keys from public or private repositories
- โ SSH Key Validation: Verify key format and security
- โ Idempotent Operations: Safe to run repeatedly
Security Features
- ๐ SSH Key Authentication: No password-based access
- ๐ก๏ธ Sudoers Validation: Uses
visudoto prevent syntax errors - ๐ Permission Management: Proper file ownership and permissions
- ๐ Audit Trail: Git history shows who granted access when
Developer Experience
- ๐งช Comprehensive Testing: Unit tests with mocking
- ๐ Clear Documentation: Examples and troubleshooting guides
- ๐ง Easy Installation: One-command setup
- ๐ป CLI Interface: Intuitive command structure
๐ Usage Examples
Basic Workflow
# Configure addy
sudo addy config set git-repo git@github.com:company/ssh-keys.git
# Grant SSH access to a new employee
sudo addy install user/john
# Give them sudo rights for deployments
sudo addy install sudo/john
# Remove access when they leave
sudo addy remove sudo/john
sudo addy remove user/john
Advanced Configuration
# Use a specific branch
sudo addy config set git-branch production
# Set up private repository access
sudo addy config set ssh-key-path /etc/addy/readonly_deploy_key
# Manually sync repository
sudo addy sync
# View all configuration
sudo addy config list
Automation & CI/CD
Addy integrates seamlessly with automation:
# In your deployment script
sudo addy install user/deployment-bot
sudo addy install sudo/deployment-bot
# In your offboarding script
sudo addy remove sudo/departing-employee
sudo addy remove user/departing-employee
๐๏ธ Git Repository Structure
Your Git repository should follow this structure:
your-addy-users-repo/
โโโ users/
โ โโโ alice.pub # Alice's SSH public key
โ โโโ bob.pub # Bob's SSH public key
โ โโโ charlie.pub # Charlie's SSH public key
โโโ README.md # Optional: document your access policies
Supported Key Types
ssh-rsa(RSA keys)ssh-ed25519(Ed25519 keys)ecdsa-sha2-*(ECDSA keys)
โ๏ธ Configuration
| Setting | Description | Default |
|---|---|---|
git-repo |
Git repository URL | Required |
git-branch |
Git branch to use | main |
ssh-key-path |
SSH private key for Git access | None |
๐งช Testing
Addy has a comprehensive test suite:
# Install development dependencies
pip3 install -r requirements-dev.txt
# Run tests
pytest
# Run with coverage
pytest --cov=addy --cov-report=html
# Run specific test categories
pytest -m unit # Unit tests only
pytest -m integration # Integration tests only
pytest -m "not slow" # Skip slow tests
๐ Security Considerations
- Private Repositories: Use deploy keys with read-only access
- SSH Key Management: Rotate keys regularly, remove unused keys
- Sudo Access: Grant sparingly, audit regularly
- Git History: Provides complete audit trail of access changes
- File Permissions: Addy sets secure permissions automatically
๐ Troubleshooting
Common Issues
Git clone/pull fails:
# Check your repository URL
sudo addy config get git-repo
# Verify SSH key permissions (if using deploy key)
sudo ls -la /etc/addy/deploy_key
User creation fails:
# Check if user already exists
id username
# Verify sufficient permissions
sudo addy sync
SSH key validation errors:
# Test key format locally
ssh-keygen -l -f /path/to/key.pub
# Check repository structure
git clone your-addy-users-repo && ls -la users/
Debug Mode
# Enable verbose logging
sudo addy --verbose sync
sudo addy --verbose install user/alice
๐ค Contributing
We welcome contributions! Please see our Contributing Guide for details.
Development Setup
git clone https://github.com/abhinavs/addy.git
cd addy
# Create and activate virtual environment (recommended)
python3 -m venv venv
source venv/bin/activate
# Install dependencies
pip install -r requirements-dev.txt
pip install -e .
# Run tests
pytest
# Code formatting
black addy/
flake8 addy/
Note: If you encounter "externally managed environment" errors, you must use a virtual environment as shown above. This is required on systems with Homebrew Python or similar package managers.
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
๐โโ๏ธ Support
- Documentation: GitHub Wiki
- Issues: GitHub Issues
- Discussions: GitHub Discussions
๐บ๏ธ Roadmap
- Audit Logging: Track all access grants/revocations
- Web Dashboard: View current access and audit logs
- Key Expiration: Automatic access revocation
- SSH Certificates: SSO-style authentication
- Webhook Integration: Automated access management
Built with โค๏ธ by @abhinavs for system administrators who believe user management shouldn't be painful.
Inspired by the elegance of Yahoo's yinst package manager - because granting server access should be as simple as installing packages.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file addy-1.0.2.tar.gz.
File metadata
- Download URL: addy-1.0.2.tar.gz
- Upload date:
- Size: 25.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fd23fc80e934e784411c4fa0b8ec3fb68cb352503570808ffd6a35018172f00
|
|
| MD5 |
3a137f01bd10e61f4cff0c01d2faf05d
|
|
| BLAKE2b-256 |
9de5795c956e0be6917fd6ece255182b3dda5d779e0800f5aaed351aa1bd480a
|
File details
Details for the file addy-1.0.2-py3-none-any.whl.
File metadata
- Download URL: addy-1.0.2-py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85a00cb1393ab8bacd5d5d5667f64e0a386f182eda44fc4c1e6143c102e12a81
|
|
| MD5 |
735c856bba473f75da7a1042bcd94633
|
|
| BLAKE2b-256 |
bda367a37b8bd7fa4c6f161b1a0fbaae8b1d8f4ed111035a4f4fced915a58670
|