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