mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
- kinit helpers are now in `ipalib.kinit`. - helpers can now use default ccache locations like many other similar helpers - helpers return the result from `run` for debugging - constants are now in `krb_utils` - helpers pass `KRB5*` and `GSS*` env vars along, so `KRB5_TRACE` works - document how to kinit for `ipalib.api` Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
21 lines
377 B
Python
21 lines
377 B
Python
#
|
|
# Copyright (C) 2024 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
# code was moved to ipalib.kinit. This module is now an alias
|
|
__all__ = (
|
|
"validate_principal",
|
|
"kinit_keytab",
|
|
"kinit_password",
|
|
"kinit_armor",
|
|
"kinit_pkinit",
|
|
)
|
|
|
|
from ..kinit import (
|
|
validate_principal,
|
|
kinit_keytab,
|
|
kinit_password,
|
|
kinit_armor,
|
|
kinit_pkinit,
|
|
)
|