mirror of
https://github.com/laurivosandi/certidude
synced 2024-11-10 15:10:35 +00:00
Lauri Võsandi
b4d006227a
* Replace PyOpenSSL with cryptography.io * Rename constants to const * Drop support for uwsgi * Use systemd to launch certidude server * Signer automatically spawned as part of server * Update requirements.txt * Clean up certidude client configuration handling * Add automatic enroll with Kerberos machine cerdentials
7 lines
107 B
Python
7 lines
107 B
Python
#!/usr/bin/env python
|
|
|
|
from certidude.cli import entry_point
|
|
|
|
if __name__ == "__main__":
|
|
entry_point()
|