mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 07:33:27 -06:00
20 lines
369 B
Python
20 lines
369 B
Python
|
#
|
||
|
# Copyright (C) 2024 FreeIPA Contributors see COPYING for license
|
||
|
#
|
||
|
|
||
|
"""
|
||
|
This module contains default OpenCloudOS family-specific implementations of
|
||
|
system tasks.
|
||
|
"""
|
||
|
|
||
|
from __future__ import absolute_import
|
||
|
|
||
|
from ipaplatform.redhat.tasks import RedHatTaskNamespace
|
||
|
|
||
|
|
||
|
class OpenCloudOSTaskNamespace(RedHatTaskNamespace):
|
||
|
pass
|
||
|
|
||
|
|
||
|
tasks = OpenCloudOSTaskNamespace()
|