#!/bin/sh
set -eu

CLIENT_IP="${1:-}"
[ -n "$CLIENT_IP" ] || {
  echo "Usage: $0 <CLIENT_IP>"
  exit 2
}

echo "Template only: apply DSCP canary for client $CLIENT_IP"
echo "This script must be split/executed carefully on VM100 and VM101 in the next reviewed step."
echo "No action performed by template."
