summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorStef Walter <stef@thewalter.net>2013-06-17 14:51:49 +0200
committerStef Walter <stef@thewalter.net>2013-06-17 15:22:49 +0200
commit93f197792150ae2e2e3ffafb903dfab6854915cb (patch)
tree13a53debeaf369189cbc0d1728a055c07ee416f5 /tools
parent41d2a28b89af41799d01d5973d026712d9174f31 (diff)
trust: Move the extract-trust external placeholder command into trust/
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile.am4
-rwxr-xr-xtools/p11-kit-extract-trust.in26
2 files changed, 0 insertions, 30 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 6155b6d..5e48149 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -50,8 +50,4 @@ p11_kit_SOURCES += \
save.c save.h \
$(NULL)
-externaldir = $(privatedir)
-external_SCRIPTS = \
- p11-kit-extract-trust
-
endif # WITH_ASN1
diff --git a/tools/p11-kit-extract-trust.in b/tools/p11-kit-extract-trust.in
deleted file mode 100755
index c7214e9..0000000
--- a/tools/p11-kit-extract-trust.in
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-# This script is a placeholder designed to be replaced when this software
-# has been customized for distribution. It should be symlinked linked to the
-# distribution's update-ca-certificates or update-ca-trust command as
-# appropriate. In the future this script will be called when the PKCS#11
-# trust module is used to modifiy trust anchors and related data.
-
-if [ $# -ne 0 ]; then
- echo "usage: p11-kit extract-trust" >&2
- exit 2
-fi
-
-echo "p11-kit: the placeholder extract-trust command has not been customized by your distribution." >&2
-
-# You can use commands like this to extract data from trust modules
-# into appropriate locations for your distribution.
-#
-# p11-kit extract --format=openssl-bundle --filter=ca-anchors \
-# --overwrite /tmp/openssl-bundle.pem
-# p11-kit extract --format=pem-bundle --filter=ca-anchors --overwrite \
-# --purpose server-auth /tmp/server-auth-bundle.pem
-# p11-kit extract --format=java-cacerts --filter=ca-anchors --overwrite \
-# --purpose server-auth /tmp/cacerts
-
-exit 1