mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 16:10:02 -06:00
9c86d35a3f
- Add missing executable bits to all scripts - Remove executable bits from all files that are not scripts, e.g. js, html, and Python libraries. - Remove Python shebang from all Python library files. It's frown upon to have executable library files in site-packages. Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Armando Neto <abiagion@redhat.com>
13 lines
318 B
Python
Executable File
13 lines
318 B
Python
Executable File
#!/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()
|