#!/usr/bin/env bash
# install.sh — Install p4rca-agent on a p4d server (SDP-aware)
set -euo pipefail

# TODO: Implement installation logic
# - Detect SDP layout (check for /p4/common/bin/p4_vars)
# - Install Python dependencies
# - Install systemd service
# - Create config from template
# - Set file ownership to perforce user

echo "ERROR: install.sh is not yet implemented." >&2
exit 1
