home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Linux / Ubuntu_64-bit / ubuntu-11.04-desktop-amd64.iso / casper / filesystem.squashfs / etc / login.defs < prev    next >
Text File  |  2011-02-20  |  10KB  |  336 lines

  1. #
  2. # /etc/login.defs - Configuration control definitions for the login package.
  3. #
  4. # Three items must be defined:  MAIL_DIR, ENV_SUPATH, and ENV_PATH.
  5. # If unspecified, some arbitrary (and possibly incorrect) value will
  6. # be assumed.  All other items are optional - if not specified then
  7. # the described action or option will be inhibited.
  8. #
  9. # Comment lines (lines beginning with "#") and blank lines are ignored.
  10. #
  11. # Modified for Linux.  --marekm
  12.  
  13. # REQUIRED for useradd/userdel/usermod
  14. #   Directory where mailboxes reside, _or_ name of file, relative to the
  15. #   home directory.  If you _do_ define MAIL_DIR and MAIL_FILE,
  16. #   MAIL_DIR takes precedence.
  17. #
  18. #   Essentially:
  19. #      - MAIL_DIR defines the location of users mail spool files
  20. #        (for mbox use) by appending the username to MAIL_DIR as defined
  21. #        below.
  22. #      - MAIL_FILE defines the location of the users mail spool files as the
  23. #        fully-qualified filename obtained by prepending the user home
  24. #        directory before $MAIL_FILE
  25. #
  26. # NOTE: This is no more used for setting up users MAIL environment variable
  27. #       which is, starting from shadow 4.0.12-1 in Debian, entirely the
  28. #       job of the pam_mail PAM modules
  29. #       See default PAM configuration files provided for
  30. #       login, su, etc.
  31. #
  32. # This is a temporary situation: setting these variables will soon
  33. # move to /etc/default/useradd and the variables will then be
  34. # no more supported
  35. MAIL_DIR        /var/mail
  36. #MAIL_FILE      .mail
  37.  
  38. #
  39. # Enable logging and display of /var/log/faillog login failure info.
  40. # This option conflicts with the pam_tally PAM module.
  41. #
  42. FAILLOG_ENAB        yes
  43.  
  44. #
  45. # Enable display of unknown usernames when login failures are recorded.
  46. #
  47. # WARNING: Unknown usernames may become world readable. 
  48. # See #290803 and #298773 for details about how this could become a security
  49. # concern
  50. LOG_UNKFAIL_ENAB    no
  51.  
  52. #
  53. # Enable logging of successful logins
  54. #
  55. LOG_OK_LOGINS        no
  56.  
  57. #
  58. # Enable "syslog" logging of su activity - in addition to sulog file logging.
  59. # SYSLOG_SG_ENAB does the same for newgrp and sg.
  60. #
  61. SYSLOG_SU_ENAB        yes
  62. SYSLOG_SG_ENAB        yes
  63.  
  64. #
  65. # If defined, all su activity is logged to this file.
  66. #
  67. #SULOG_FILE    /var/log/sulog
  68.  
  69. #
  70. # If defined, file which maps tty line to TERM environment parameter.
  71. # Each line of the file is in a format something like "vt100  tty01".
  72. #
  73. #TTYTYPE_FILE    /etc/ttytype
  74.  
  75. #
  76. # If defined, login failures will be logged here in a utmp format
  77. # last, when invoked as lastb, will read /var/log/btmp, so...
  78. #
  79. FTMP_FILE    /var/log/btmp
  80.  
  81. #
  82. # If defined, the command name to display when running "su -".  For
  83. # example, if this is defined as "su" then a "ps" will display the
  84. # command is "-su".  If not defined, then "ps" would display the
  85. # name of the shell actually being run, e.g. something like "-sh".
  86. #
  87. SU_NAME        su
  88.  
  89. #
  90. # If defined, file which inhibits all the usual chatter during the login
  91. # sequence.  If a full pathname, then hushed mode will be enabled if the
  92. # user's name or shell are found in the file.  If not a full pathname, then
  93. # hushed mode will be enabled if the file exists in the user's home directory.
  94. #
  95. HUSHLOGIN_FILE    .hushlogin
  96. #HUSHLOGIN_FILE    /etc/hushlogins
  97.  
  98. #
  99. # *REQUIRED*  The default PATH settings, for superuser and normal users.
  100. #
  101. # (they are minimal, add the rest in the shell startup files)
  102. ENV_SUPATH    PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
  103. ENV_PATH    PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
  104.  
  105. #
  106. # Terminal permissions
  107. #
  108. #    TTYGROUP    Login tty will be assigned this group ownership.
  109. #    TTYPERM        Login tty will be set to this permission.
  110. #
  111. # If you have a "write" program which is "setgid" to a special group
  112. # which owns the terminals, define TTYGROUP to the group number and
  113. # TTYPERM to 0620.  Otherwise leave TTYGROUP commented out and assign
  114. # TTYPERM to either 622 or 600.
  115. #
  116. # In Debian /usr/bin/bsd-write or similar programs are setgid tty
  117. # However, the default and recommended value for TTYPERM is still 0600
  118. # to not allow anyone to write to anyone else console or terminal
  119.  
  120. # Users can still allow other people to write them by issuing 
  121. # the "mesg y" command.
  122.  
  123. TTYGROUP    tty
  124. TTYPERM        0600
  125.  
  126. #
  127. # Login configuration initializations:
  128. #
  129. #    ERASECHAR    Terminal ERASE character ('\010' = backspace).
  130. #    KILLCHAR    Terminal KILL character ('\025' = CTRL/U).
  131. #    UMASK        Default "umask" value.
  132. #
  133. # The ERASECHAR and KILLCHAR are used only on System V machines.
  134. # UMASK is the default umask value for pam_umask and is used by
  135. # useradd and newusers to set the mode of the new home directories.
  136. # 022 is the "historical" value in Debian for UMASK
  137. # 027, or even 077, could be considered better for privacy
  138. # There is no One True Answer here : each sysadmin must make up his/her
  139. # mind.
  140. #
  141. # Prefix these values with "0" to get octal, "0x" to get hexadecimal.
  142. #
  143. ERASECHAR    0177
  144. KILLCHAR    025
  145. UMASK        022
  146.  
  147. #
  148. # Password aging controls:
  149. #
  150. #    PASS_MAX_DAYS    Maximum number of days a password may be used.
  151. #    PASS_MIN_DAYS    Minimum number of days allowed between password changes.
  152. #    PASS_WARN_AGE    Number of days warning given before a password expires.
  153. #
  154. PASS_MAX_DAYS    99999
  155. PASS_MIN_DAYS    0
  156. PASS_WARN_AGE    7
  157.  
  158. #
  159. # Min/max values for automatic uid selection in useradd
  160. #
  161. UID_MIN             1000
  162. UID_MAX            60000
  163. # System accounts
  164. #SYS_UID_MIN          100
  165. #SYS_UID_MAX          999
  166.  
  167. #
  168. # Min/max values for automatic gid selection in groupadd
  169. #
  170. GID_MIN             1000
  171. GID_MAX            60000
  172. # System accounts
  173. #SYS_GID_MIN          100
  174. #SYS_GID_MAX          999
  175.  
  176. #
  177. # Max number of login retries if password is bad. This will most likely be
  178. # overriden by PAM, since the default pam_unix module has it's own built
  179. # in of 3 retries. However, this is a safe fallback in case you are using
  180. # an authentication module that does not enforce PAM_MAXTRIES.
  181. #
  182. LOGIN_RETRIES        5
  183.  
  184. #
  185. # Max time in seconds for login
  186. #
  187. LOGIN_TIMEOUT        60
  188.  
  189. #
  190. # Which fields may be changed by regular users using chfn - use
  191. # any combination of letters "frwh" (full name, room number, work
  192. # phone, home phone).  If not defined, no changes are allowed.
  193. # For backward compatibility, "yes" = "rwh" and "no" = "frwh".
  194. CHFN_RESTRICT        rwh
  195.  
  196. #
  197. # Should login be allowed if we can't cd to the home directory?
  198. # Default in no.
  199. #
  200. DEFAULT_HOME    yes
  201.  
  202. #
  203. # If defined, this command is run when removing a user.
  204. # It should remove any at/cron/print jobs etc. owned by
  205. # the user to be removed (passed as the first argument).
  206. #
  207. #USERDEL_CMD    /usr/sbin/userdel_local
  208.  
  209. #
  210. # If set to yes, userdel will remove the user┬┤s group if it contains no
  211. # more members, and useradd will create by default a group with the name
  212. # of the user.
  213. #
  214. # Other former uses of this variable such as setting the umask when
  215. # user==primary group are not used in PAM environments, such as Debian
  216. #
  217. USERGROUPS_ENAB yes
  218.  
  219. #
  220. # Instead of the real user shell, the program specified by this parameter
  221. # will be launched, although its visible name (argv[0]) will be the shell's.
  222. # The program may do whatever it wants (logging, additional authentification,
  223. # banner, ...) before running the actual shell.
  224. #
  225. # FAKE_SHELL /bin/fakeshell
  226.  
  227. #
  228. # If defined, either full pathname of a file containing device names or
  229. # a ":" delimited list of device names.  Root logins will be allowed only
  230. # upon these devices.
  231. #
  232. # This variable is used by login and su.
  233. #
  234. #CONSOLE    /etc/consoles
  235. #CONSOLE    console:tty01:tty02:tty03:tty04
  236.  
  237. #
  238. # List of groups to add to the user's supplementary group set
  239. # when logging in on the console (as determined by the CONSOLE
  240. # setting).  Default is none.
  241. #
  242. # Use with caution - it is possible for users to gain permanent
  243. # access to these groups, even when not logged in on the console.
  244. # How to do it is left as an exercise for the reader...
  245. #
  246. # This variable is used by login and su.
  247. #
  248. #CONSOLE_GROUPS        floppy:audio:cdrom
  249.  
  250. #
  251. # If set to "yes", new passwords will be encrypted using the MD5-based
  252. # algorithm compatible with the one used by recent releases of FreeBSD.
  253. # It supports passwords of unlimited length and longer salt strings.
  254. # Set to "no" if you need to copy encrypted passwords to other systems
  255. # which don't understand the new algorithm.  Default is "no".
  256. #
  257. # This variable is deprecated. You should use ENCRYPT_METHOD.
  258. #
  259. #MD5_CRYPT_ENAB    no
  260.  
  261. #
  262. # If set to MD5 , MD5-based algorithm will be used for encrypting password
  263. # If set to SHA256, SHA256-based algorithm will be used for encrypting password
  264. # If set to SHA512, SHA512-based algorithm will be used for encrypting password
  265. # If set to DES, DES-based algorithm will be used for encrypting password (default)
  266. # Overrides the MD5_CRYPT_ENAB option
  267. #
  268. # Note: It is recommended to use a value consistent with
  269. # the PAM modules configuration.
  270. #
  271. ENCRYPT_METHOD SHA512
  272.  
  273. #
  274. # Only used if ENCRYPT_METHOD is set to SHA256 or SHA512.
  275. #
  276. # Define the number of SHA rounds.
  277. # With a lot of rounds, it is more difficult to brute forcing the password.
  278. # But note also that it more CPU resources will be needed to authenticate
  279. # users.
  280. #
  281. # If not specified, the libc will choose the default number of rounds (5000).
  282. # The values must be inside the 1000-999999999 range.
  283. # If only one of the MIN or MAX values is set, then this value will be used.
  284. # If MIN > MAX, the highest value will be used.
  285. #
  286. # SHA_CRYPT_MIN_ROUNDS 5000
  287. # SHA_CRYPT_MAX_ROUNDS 5000
  288.  
  289. ################# OBSOLETED BY PAM ##############
  290. #                        #
  291. # These options are now handled by PAM. Please    #
  292. # edit the appropriate file in /etc/pam.d/ to    #
  293. # enable the equivelants of them.
  294. #
  295. ###############
  296.  
  297. #MOTD_FILE
  298. #DIALUPS_CHECK_ENAB
  299. #LASTLOG_ENAB
  300. #MAIL_CHECK_ENAB
  301. #OBSCURE_CHECKS_ENAB
  302. #PORTTIME_CHECKS_ENAB
  303. #SU_WHEEL_ONLY
  304. #CRACKLIB_DICTPATH
  305. #PASS_CHANGE_TRIES
  306. #PASS_ALWAYS_WARN
  307. #ENVIRON_FILE
  308. #NOLOGINS_FILE
  309. #ISSUE_FILE
  310. #PASS_MIN_LEN
  311. #PASS_MAX_LEN
  312. #ULIMIT
  313. #ENV_HZ
  314. #CHFN_AUTH
  315. #CHSH_AUTH
  316. #FAIL_DELAY
  317.  
  318. ################# OBSOLETED #######################
  319. #                          #
  320. # These options are no more handled by shadow.    #
  321. #                                                 #
  322. # Shadow utilities will display a warning if they #
  323. # still appear.                                   #
  324. #                                                 #
  325. ###################################################
  326.  
  327. # CLOSE_SESSIONS
  328. # LOGIN_STRING
  329. # NO_PASSWORD_CONSOLE
  330. # QMAIL_DIR
  331.  
  332.  
  333.  
  334.