mirror of
https://github.com/stefanberger/swtpm.git
synced 2025-08-22 10:30:52 +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>
8 lines
115 B
Python
8 lines
115 B
Python
#!/usr/bin/env python3
|
|
""" Launcher for swtpm-localca
|
|
"""
|
|
|
|
from py_swtpm_localca.swtpm_localca import main
|
|
|
|
main()
|