From 2a552e43581c74f51205c7141ec9f6e9542509f8 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 30 Jan 2012 09:56:52 -0500 Subject: SSSDConfigAPI: Move sssd.api.* to /usr/share/sssd https://fedorahosted.org/sssd/ticket/1158 --- src/config/SSSDConfig.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/config/SSSDConfig.py b/src/config/SSSDConfig.py index 413eab08e..38c0e02eb 100644 --- a/src/config/SSSDConfig.py +++ b/src/config/SSSDConfig.py @@ -286,9 +286,9 @@ class SSSDConfigSchema(SSSDChangeConf): SSSDChangeConf.__init__(self) #TODO: get these from a global setting if not schemafile: - schemafile = '/etc/sssd/sssd.api.conf' + schemafile = '/usr/share/sssd/sssd.api.conf' if not schemaplugindir: - schemaplugindir = '/etc/sssd/sssd.api.d' + schemaplugindir = '/usr/share/sssd/sssd.api.d' try: #Read the primary config file @@ -1190,10 +1190,10 @@ class SSSDConfig(SSSDChangeConf): schemafile: The path to the api schema config file. Usually - /etc/sssd/sssd.api.conf + /usr/share/sssd/sssd.api.conf schemaplugindir: The path the directory containing the provider schema config files. - Usually /etc/sssd/sssd.api.d + Usually /usr/share/sssd/sssd.api.d === Returns === The newly-created SSSDConfig object. -- cgit