From e01095dfb33aaef0ab1babf86a71d70410b666ed Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Mon, 8 Jun 2015 06:19:01 +0000 Subject: install: Fix missing variable initialization in replica install https://fedorahosted.org/freeipa/ticket/4468 --- ipaserver/install/server/replicainstall.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ipaserver/install/server/replicainstall.py b/ipaserver/install/server/replicainstall.py index e27d285ea..d648818ad 100644 --- a/ipaserver/install/server/replicainstall.py +++ b/ipaserver/install/server/replicainstall.py @@ -29,6 +29,7 @@ from ipaserver.install.server.install import ( init_private_ccache, destroy_private_ccache) DIRMAN_DN = DN(('cn', 'directory manager')) +REPLICA_INFO_TOP_DIR = None def get_dirman_password(): -- cgit