From 55ba300c7cb59cf05b16cc01281f51d93eb25acf Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Tue, 10 Feb 2009 15:52:25 -0500 Subject: Incorporate new schema for IPAv2 Loading this via LDIF is a temporary measure until we can load it online. This requires removing the dNSRecord declarations from 05rfc2247.ldif so a replacement copy is included for now. Also add the netgroups container. --- ipaserver/install/dsinstance.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ipaserver/install/dsinstance.py') diff --git a/ipaserver/install/dsinstance.py b/ipaserver/install/dsinstance.py index 6ba88ecd9..9e6d22e06 100644 --- a/ipaserver/install/dsinstance.py +++ b/ipaserver/install/dsinstance.py @@ -266,6 +266,12 @@ class DsInstance(service.Service): schema_dirname(self.serverid) + "60radius.ldif") shutil.copyfile(ipautil.SHARE_DIR + "60ipaconfig.ldif", schema_dirname(self.serverid) + "60ipaconfig.ldif") + shutil.copyfile(ipautil.SHARE_DIR + "60basev2.ldif", + schema_dirname(self.serverid) + "60basev2.ldif") + shutil.move(schema_dirname(self.serverid) + "05rfc2247.ldif", + schema_dirname(self.serverid) + "05rfc2247.ldif.old") + shutil.copyfile(ipautil.SHARE_DIR + "05rfc2247.ldif", + schema_dirname(self.serverid) + "05rfc2247.ldif") def __restart_instance(self): try: -- cgit