#!/bin/sh
if test "`id -u`" -eq 0 ; then
	SUDO=""
else
	SUDO="sudo "
fi
cat >&2 <<EOF
brctl is deprecated and should not be used. Please migrate to iproute2:
ip link add type bridge / ip --brief link show
If you still depend on the deprecated tool, install bridge-utils.
${SUDO}zypper install bridge-utils
EOF
exit 1
