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

Rewrite swtpm-localca in python and get rid of the bash file and the flock dependency. Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
12 lines
211 B
Python
12 lines
211 B
Python
|
|
""" swtpm_localca_conf.py
|
|
|
|
This module holds compile-time constants
|
|
"""
|
|
|
|
SWTPM_VER_MAJOR = @SWTPM_VER_MAJOR@
|
|
SWTPM_VER_MINOR = @SWTPM_VER_MINOR@
|
|
SWTPM_VER_MICRO = @SWTPM_VER_MICRO@
|
|
|
|
SYSCONFDIR = "@SYSCONFDIR@"
|