diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2012-01-30 09:56:52 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-01-30 19:56:25 -0500 |
commit | 2a552e43581c74f51205c7141ec9f6e9542509f8 (patch) | |
tree | c412f07b0bb4c6fef72f7e7d4ae7744ef290e753 /src/config | |
parent | c9b2b7f3f02bf40b698c70640f151d0113736195 (diff) | |
download | sssd-2a552e43581c74f51205c7141ec9f6e9542509f8.tar.gz sssd-2a552e43581c74f51205c7141ec9f6e9542509f8.tar.bz2 sssd-2a552e43581c74f51205c7141ec9f6e9542509f8.zip |
SSSDConfigAPI: Move sssd.api.* to /usr/share/sssd
https://fedorahosted.org/sssd/ticket/1158
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/SSSDConfig.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/config/SSSDConfig.py b/src/config/SSSDConfig.py index 413eab08..38c0e02e 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. |