p11-kit/p11-kit-extract-trust
Stef Walter e385e6e30d Update to new upstream stable release 0.18.0
Also:
- Various logging tweaks (#928914, #928750)
- Make the 'p11-kit extract-trust' explicitly reject
  additional arguments
2013-04-04 09:27:24 +02:00

17 lines
276 B
Bash
Executable File

#!/usr/bin/bash
set -e
if test "$UID" != "0"; then
echo "p11-kit: the 'extract-trust' command must be run as root" >&2
exit 2
fi
if test $# -gt 1; then
echo "p11-kit: no additional arguments are supported for this command" >&2
exit 2
fi
exec /usr/bin/update-ca-trust