Blame SOURCES/trust-extract-compat

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