dont-migrate-to-authselect.diff We don't have authselect, so just return true when trying to migrate to it. (LP: #1793994)

This commit is contained in:
Timo Aaltonen
2018-10-01 11:37:36 +03:00
parent 71b402b518
commit 232046deb7
3 changed files with 21 additions and 0 deletions

7
debian/changelog vendored
View File

@@ -1,3 +1,10 @@
freeipa (4.7.0-2) UNRELEASED; urgency=medium
* dont-migrate-to-authselect.diff We don't have authselect, so just
return true when trying to migrate to it. (LP: #1793994)
-- Timo Aaltonen <tjaalton@debian.org> Mon, 01 Oct 2018 11:37:15 +0300
freeipa (4.7.0-1) unstable; urgency=medium freeipa (4.7.0-1) unstable; urgency=medium
* New upstream release. (LP: #1772447, #1772450) * New upstream release. (LP: #1772447, #1772450)

View File

@@ -0,0 +1,13 @@
--- a/ipaplatform/debian/tasks.py
+++ b/ipaplatform/debian/tasks.py
@@ -57,6 +57,10 @@ class DebianTaskNamespace(RedHatTaskName
# Debian doesn't use authconfig, nothing to restore
return True
+ def migrate_auth_configuration(self, statestore):
+ # Debian doesn't have authselect
+ return True
+
@staticmethod
def parse_ipa_version(version):
return BaseTaskNamespace.parse_ipa_version(version)

View File

@@ -12,3 +12,4 @@ fix-krb5kdc-cert-path.diff
ipa-httpd-pwdreader-force-fqdn.diff ipa-httpd-pwdreader-force-fqdn.diff
fix-gzip-path.diff fix-gzip-path.diff
fix-py3-lesscpy-name.diff fix-py3-lesscpy-name.diff
dont-migrate-to-authselect.diff