diff --git a/ipaplatform/debian/tasks.py b/ipaplatform/debian/tasks.py index 025c5d12d..bc2633dde 100644 --- a/ipaplatform/debian/tasks.py +++ b/ipaplatform/debian/tasks.py @@ -206,4 +206,12 @@ Serial Number (hex): {cert.serial_number:#x} return True + # Debian doesn't use authselect, so call enable/disable_ldap_automount + # from BaseTaskNamespace. + def enable_ldap_automount(self, statestore): + return BaseTaskNamespace.enable_ldap_automount(self, statestore) + + def disable_ldap_automount(self, statestore): + return BaseTaskNamespace.disable_ldap_automount(self, statestore) + tasks = DebianTaskNamespace()