2017-01-05 04:41:08 -06:00
|
|
|
#
|
|
|
|
# Copyright (C) 2017 FreeIPA Contributors see COPYING for license
|
|
|
|
#
|
|
|
|
|
|
|
|
"""
|
|
|
|
This module contains default Debian-specific implementations of system tasks.
|
|
|
|
"""
|
|
|
|
|
2018-04-05 02:21:16 -05:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2017-01-05 04:41:08 -06:00
|
|
|
from ipaplatform.base.tasks import BaseTaskNamespace
|
|
|
|
from ipaplatform.redhat.tasks import RedHatTaskNamespace
|
|
|
|
|
|
|
|
|
|
|
|
class DebianTaskNamespace(RedHatTaskNamespace):
|
|
|
|
@staticmethod
|
|
|
|
def restore_pre_ipa_client_configuration(fstore, statestore,
|
|
|
|
was_sssd_installed,
|
|
|
|
was_sssd_configured):
|
|
|
|
# Debian doesn't use authconfig, nothing to restore
|
|
|
|
return True
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def set_nisdomain(nisdomain):
|
|
|
|
# Debian doesn't use authconfig, nothing to set
|
|
|
|
return True
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def modify_nsswitch_pam_stack(sssd, mkhomedir, statestore):
|
|
|
|
# Debian doesn't use authconfig, this is handled by pam-auth-update
|
|
|
|
return True
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def modify_pam_to_use_krb5(statestore):
|
|
|
|
# Debian doesn't use authconfig, this is handled by pam-auth-update
|
|
|
|
return True
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def backup_auth_configuration(path):
|
|
|
|
# Debian doesn't use authconfig, nothing to backup
|
|
|
|
return True
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def restore_auth_configuration(path):
|
|
|
|
# Debian doesn't use authconfig, nothing to restore
|
|
|
|
return True
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def parse_ipa_version(version):
|
|
|
|
return BaseTaskNamespace.parse_ipa_version(version)
|
|
|
|
|
2018-02-06 03:05:49 -06:00
|
|
|
def configure_httpd_wsgi_conf(self):
|
|
|
|
# Debian doesn't require special mod_wsgi configuration
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2017-01-05 04:41:08 -06:00
|
|
|
tasks = DebianTaskNamespace()
|