autofax/uninstall.sh
Sochen aef5e5283a Initial commit: automated hourly fax sender for insurance claims
Sends doula coverage claims via Telnyx fax API every hour, logs every
attempt, and generates a printable HTML report for HR. Includes both
a Linux CLI with cron scheduling and a Windows GUI (tkinter) that can
be packaged as a portable exe via PyInstaller.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 11:36:47 +00:00

9 lines
331 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
echo "Removing AutoFax cron jobs..."
crontab -l 2>/dev/null | grep -v "autofax" | crontab - 2>/dev/null || true
echo "Done. Cron jobs removed."
echo ""
echo "Reports are preserved in: $(cd "$(dirname "$0")" && pwd)/reports/"
echo "To fully remove: rm -rf $(cd "$(dirname "$0")" && pwd)/venv"