Tweak security/sshblock version 1.0_1
[dports.git] / security / p5-Unix-Passwd-File / pkg-descr
1 Unix::Passwd::File can be used to read and manipulate entries in Unix system
2 password files (/etc/passwd, /etc/group, /etc/group, /etc/gshadow) but can also
3 be told to search in custom location, for testing purposes).
4
5 This module uses a procedural (non-OO) interface. Each function in this module
6 open and read the passwd files once. Read-only functions like `list_users()` and
7 `get_max_gid()` open in read-only mode. Functions that might write to the files
8 like `add_user()` or `delete_group()` first lock `passwd.lock` file, open in
9 read+write mode and also read the files in the first pass, then seek to the
10 beginning and write back the files.
11
12 No caching is done so you should do your own if you need to.
13
14 WWW: http://search.cpan.org/dist/Unix-Passwd-File/