mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-02 03:30:58 -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>
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()
|