summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2012-01-30 09:56:52 -0500
committerStephen Gallagher <sgallagh@redhat.com>2012-01-30 19:56:25 -0500
commit2a552e43581c74f51205c7141ec9f6e9542509f8 (patch)
treec412f07b0bb4c6fef72f7e7d4ae7744ef290e753 /src
parentc9b2b7f3f02bf40b698c70640f151d0113736195 (diff)
downloadsssd-2a552e43581c74f51205c7141ec9f6e9542509f8.tar.gz
sssd-2a552e43581c74f51205c7141ec9f6e9542509f8.tar.xz
sssd-2a552e43581c74f51205c7141ec9f6e9542509f8.zip
SSSDConfigAPI: Move sssd.api.* to /usr/share/sssd
https://fedorahosted.org/sssd/ticket/1158
Diffstat (limited to 'src')
-rw-r--r--src/config/SSSDConfig.py8
1 files changed, 4 insertions, 4 deletions
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.