Blame SOURCES/trust-extract-compat

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