#!/bin/sh
set -e
REAL="/usr/sbin/ciped-`uname -r`"
if [ -x "$REAL" ]; then
    exec "$REAL" "$@"
else
    echo "ciped-wrapper: Cannot find binary for kernel `uname -r`." 1>&2
    exit 1
fi
