summaryrefslogtreecommitdiff
path: root/dev-libs/opencryptoki/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
commit4f2d7949f03e1c198bc888f2d05f421d35c57e21 (patch)
treeba5f07bf3f9d22d82e54a462313f5d244036c768 /dev-libs/opencryptoki/files
reinit the tree, so we can have metadata
Diffstat (limited to 'dev-libs/opencryptoki/files')
-rw-r--r--dev-libs/opencryptoki/files/pkcsslotd.init.227
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-libs/opencryptoki/files/pkcsslotd.init.2 b/dev-libs/opencryptoki/files/pkcsslotd.init.2
new file mode 100644
index 000000000000..44056b0e50b7
--- /dev/null
+++ b/dev-libs/opencryptoki/files/pkcsslotd.init.2
@@ -0,0 +1,27 @@
+#!/sbin/openrc-run
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+depend() {
+ need localmount
+
+ # Optional services (see ebuild)
+ use tcsd
+}
+
+start() {
+ # detect available tokens and set up
+ # /var/lib/opencryptoki/pk_config_data
+ ebegin "Preparing pkcs configuration"
+ /usr/sbin/pkcs11_startup
+
+ ebegin "Starting pkcsslotd"
+ start-stop-daemon --start --exec /usr/sbin/pkcsslotd --pidfile /var/run/pkcsslotd.pid
+ eend $? "Check your logs to see why startup failed"
+}
+
+stop() {
+ ebegin "Stopping pkcsslotd"
+ start-stop-daemon --stop --exec /usr/sbin/pkcsslotd --pidfile /var/run/pkcsslotd.pid
+ eend $?
+}