mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 23:50:03 -06:00
6d02eddd3e
Replace the @PYTHONSHEBANG@ substitution with a valid #!/usr/bin/python3 shebang. This turns Python .in files into valid Python files. The files can now be checked with pylint and IDEs recognize the files as Python files. The shebang is still replaced with "#!$(PYTHON) -E" to support platform-python. Related: https://pagure.io/freeipa/issue/7984 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Francois Cami <fcami@redhat.com>
13 lines
318 B
Python
13 lines
318 B
Python
#!/usr/bin/python3
|
|
#
|
|
# Copyright (C) 2015 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
# Documentation can be found at:
|
|
# http://freeipa.org/page/LdapUpdate
|
|
# http://www.freeipa.org/page/V4/Server_Upgrade_Refactoring
|
|
|
|
from ipaserver.install.ipa_server_upgrade import ServerUpgrade
|
|
|
|
ServerUpgrade.run_cli()
|