Skip to content

Instantly share code, notes, and snippets.

View Terry-BrooksJr's full-sized avatar
🎯
Focusing

Terry Arthur Brooks, Jr. Terry-BrooksJr

🎯
Focusing
View GitHub Profile
@Terry-BrooksJr
Terry-BrooksJr / get-howdy.sh
Created June 7, 2025 23:57
Automated Script to Build, Install, and Configure Howdy as a PAM solution on Ubuntu 24.04
#!/usr/bin/env bash
# Howdy installation and configuration script
set -Eeuo pipefail
# Configuration constants
readonly HOWDY_REPO="https://github.com/boltgolt/howdy.git"
readonly HOWDY_BRANCH="beta"
readonly HOWDY_DIR="/opt/howdy"
readonly VENV_DIR="$HOWDY_DIR/.venv"