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

Remove tpm-tools from runtime dependencies. Keep trousers for the creation of the 'tss' user for now. Add python related dependencies. Adjust the directory ownership for /var/lib/swtpm-localca to tss:root and the mode flags to 0750. The new CA now may still be created as tss:tss but users in the tss group will not have access to it. Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
27 lines
795 B
Bash
Executable File
27 lines
795 B
Bash
Executable File
#!/bin/sh
|
|
cat <<_EOF_
|
|
/usr/bin/swtpm_bios
|
|
/usr/bin/swtpm_setup
|
|
/usr/bin/swtpm_setup.sh
|
|
/usr/bin/swtpm_ioctl
|
|
/usr/share/man/man8/swtpm_bios.8*
|
|
/usr/share/man/man8/swtpm_cert.8*
|
|
/usr/share/man/man8/swtpm_ioctl.8*
|
|
/usr/share/man/man8/swtpm-localca.conf.8*
|
|
/usr/share/man/man8/swtpm-localca.options.8*
|
|
/usr/share/man/man8/swtpm-localca.8*
|
|
/usr/share/man/man8/swtpm_setup.8*
|
|
/usr/share/man/man8/swtpm_setup.conf.8*
|
|
/usr/share/man/man8/swtpm_setup.sh.8*
|
|
/usr/share/swtpm/swtpm-localca
|
|
/usr/share/swtpm/swtpm-create-user-config-files
|
|
/etc/swtpm-localca.conf
|
|
/etc/swtpm-localca.options
|
|
/etc/swtpm_setup.conf
|
|
/usr/lib/python3/dist-packages/py_swtpm_setup/*
|
|
/usr/lib/python3/dist-packages/swtpm_setup-*/*
|
|
_EOF_
|
|
if test -n "$(find $(dirname "$0")/tmp -name swtpm_cert)"; then
|
|
echo "/usr/bin/swtpm_cert"
|
|
fi
|