mirror of
https://github.com/stefanberger/swtpm.git
synced 2025-08-22 19:04:35 +00:00

Remove swtpm_cuse related install script since not needed anymore. Also address the following issue: E: swtpm-tools: unknown-control-interpreter control/postinst #!/usr/bin/env Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
9 lines
182 B
Bash
9 lines
182 B
Bash
#!/bin/sh
|
|
|
|
SWTPM_LOCALCA_DIR=@LOCALSTATEDIR@/lib/swtpm-localca
|
|
|
|
if ! [ -d $SWTPM_LOCALCA_DIR ]; then
|
|
mkdir -p $SWTPM_LOCALCA_DIR
|
|
chown @TSS_USER@:@TSS_GROUP@ $SWTPM_LOCALCA_DIR
|
|
fi
|