mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 16:10:02 -06:00
f31797c70a
The Python 3 refactoring effort is finishing, it should be safe to turn all scripts to run in Python 3 by default. https://pagure.io/freeipa/issue/4985 Reviewed-By: Christian Heimes <cheimes@redhat.com>
7 lines
173 B
Python
Executable File
7 lines
173 B
Python
Executable File
#!/usr/bin/python3
|
|
# Copyright (C) 2017 IPA Project Contributors, see COPYING for license
|
|
from ipaserver.secrets.service import main
|
|
|
|
if __name__ == '__main__':
|
|
main()
|