Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/pynslcd/cfg.py
blob: 000e6014912ec3734a43e714b5ad389fc4285dff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58

# cfg.py - module for accessing configuration information
#
# Copyright (C) 2010 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA

import ldap

# these values are defined here

# the name of the program
program_name = 'pynslcd'
# the debugging level
debug = 0
# whether the --check option was passed
check = False
# the number of threads to start
threads = 5

# the user id nslcd should be run as
uid = None
# the group id nslcd should be run as
gid = None

# the LDAP server to use
# FIXME: support multiple servers and have a fail-over mechanism
ldap_uri = 'ldapi:///'

# default search scope for searches
scope = ldap.SCOPE_SUBTREE

# LDAP search bases to search
bases = ( 'dc=test, dc=tld', )

# the users for which no initgroups() searches should be done
nss_initgroups_ignoreusers = []

# the DN to use to perform password modifications as root
rootpwmoddn = 'cn=admin, dc=test, dc=tld'
rootpwmodpw = 'test'

# FIXME: implement reading configuration from file
def read(cfgfile):
    pass