test
[hcoop/zz_old/ikiwiki] / UserManagement.mdwn
CommitLineData
ee25310d 1We have two standard Debian GNU scripts to perform user management.\r
2\r
3== adduser ==\r
4First, adduser, does the usual job, and executes /usr/local/sbin/adduser.local. \r
5There we log new account creation to our special log file, and set up \r
6group quotas. We can't set up quotas by defining the appropriate variable\r
7in /etc/adduser.conf because that works for user quotas only, and not\r
8group quotas. What a shame.\r
9\r
10== deluser ==\r
11The tool to delete users is deluser. What's wrong with deluser is that it\r
12can remove user's files at deletion time, and it can also back them up\r
13before that. You can specify backup directory, but it goes tar-gzipping\r
14the files, which can take a long time. I need to hack the source to allow\r
15files to just be moved to the backup directory. This way, if you keep \r
16backup dir on the same partition as /home, moving user's files is\r
17instant and doesn't grow linearly with user directory size.\r
18----\r
19CategorySystemAdministration\r