]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/libpam/modules/pam_limits/limits.skel
Initial import of virgin Linux-PAM 0.65, slightly stripped down.
[FreeBSD/FreeBSD.git] / contrib / libpam / modules / pam_limits / limits.skel
1 # /etc/security/limits.conf
2 #
3 #Each line describes a limit for a user in the form:
4 #
5 #<domain>        <type>  <item>  <value>
6 #
7 #Where:
8 #<domain> can be:
9 #        - an user name
10 #        - a group name, with @group syntax
11 #        - the wildcard *, for default entry
12 #
13 #<type> can have the two values:
14 #        - "soft" for enforcing the soft limits
15 #        - "hard" for enforcing hard limits
16 #
17 #<item> can be one of the following:
18 #        - core - limits the core file size (KB)
19 #        - data - max data size (KB)
20 #        - fsize - maximum filesize (KB)
21 #        - memlock - max locked-in-memory address space (KB)
22 #        - nofile - max number of open files
23 #        - rss - max resident set size (KB)
24 #        - stack - max stack size (KB)
25 #        - cpu - max CPU time (MIN)
26 #        - nproc - max number of processes
27 #        - as - address space limit
28 #        - maxlogins - max number of logins for this user
29 #
30 #<domain>      <type>  <item>         <value>
31 #
32
33 #*               soft    core            0
34 #*               hard    rss             10000
35 #@student        hard    nproc           20
36 #@faculty        soft    nproc           20
37 #@faculty        hard    nproc           50
38 #ftp             hard    nproc           0
39 #@student        -       maxlogins       4
40
41 # End of file