-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathREADME
50 lines (37 loc) · 1.62 KB
/
README
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
INSTALLATION
===============
This file explains post compilation steps. It assumes that libnss-sqlite
is compiled and in system libraries directory (/lib).
1. Create database
--------------------
libnss-sqlite use two SQLite databases to provide authentication services.
Thus the first thing you have to do is to create these DB. Depending on your
sources configuration, you may use one or two DB (--with-passwd-db &
--with-shadow-db switches). Default configuration uses 2 databases:
/var/db/passwd.sqlite and /var/db/shadow.sqlite, we'll use these here:
cd libnss-sqlite
sudo mkdir /var/db
sudo sqlite3 -init conf/passwd.sql /var/db/passwd.sqlite
sudo sqlite3 -init conf/shadow.sql /var/db/shadow.sqlite
sudo chmod o-r /var/db/shadow.sqlite
That's all, databases are ready. Of course, it's up to you to populate them!
Currently, there is no way to customise database fields and tables' names.
2. Configure nsswitch.conf
----------------------------
The second step is to tell glibc that we use this lib. Open /etc/nsswitch.conf
and add sqlite at the end of the passwd, groups and shadow lines. You should
obtain something like :
# ...
passwd: compat sqlite
group: compat sqlite
shadow: compat sqlite
# ...
3. Test
---------
Insert some records into SQLite db tables, open a new shell (nsswitch.conf is
only read when a new application is launched) and try id [user in SQLite DB].
4. Limitations
----------------
libnss-sqlite only handle users which are in its DB. You can't have an external
user linked to a DB stored group. This is because additional groups lookup use
username and is quite ugly to implement.