#!/bin/sh
if [ -x /usr/sbin/pkcs_slot.64 ]; then
  exec /usr/sbin/pkcs_slot.64 $*
fi
if [ -x /usr/sbin/pkcs_slot.32 ]; then
  exec /usr/sbin/pkcs_slot.32 $*
fi
echo "ERROR: No valid /usr/sbin/pkcs_slot found. Aborting."
exit 1
