mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 08:00:02 -06:00
8f98fa1bd5
Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Petr Spacek <pspacek@redhat.com>
21 lines
449 B
Python
21 lines
449 B
Python
#
|
|
# Copyright (C) 2015 FreeIPA Contributors see COPYING for license
|
|
#
|
|
"""Module containing platform-specific functionality.
|
|
|
|
ipaplatform.constants
|
|
ipaplatform.paths
|
|
ipaplatform.services
|
|
ipaplatform.tasks
|
|
"""
|
|
import os
|
|
|
|
|
|
NAME = "__PLATFORM__"
|
|
|
|
# Create an alias for platform specific modulues, e.g.
|
|
# 'import ipaplatform.paths' loads 'ipaplatform/NAME/paths.py'.
|
|
|
|
__path__.append(
|
|
os.path.join(os.path.dirname(os.path.abspath(__file__)), NAME))
|