ipaplatform: Move paths from installers to paths module

Part of: https://fedorahosted.org/freeipa/ticket/4052

Reviewed-By: Petr Viktorin <pviktori@redhat.com>
This commit is contained in:
Tomas Babej
2014-06-17 11:45:43 +02:00
committed by Petr Viktorin
parent c8511d3b3b
commit e5e42fc83a
15 changed files with 199 additions and 148 deletions

View File

@@ -20,6 +20,7 @@
#
import sys
from ipaplatform.paths import paths
try:
from optparse import OptionParser
from ipapython import ipautil, config
@@ -80,7 +81,7 @@ def get_entry(dn, conn):
def main():
retval = 0
files = ['/usr/share/ipa/schema_compat.uldif']
files = [paths.SCHEMA_COMPAT_ULDIF]
options, args = parse_options()