Blame SOURCES/trust-extract-compat

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