summaryrefslogtreecommitdiffstats
path: root/etc/login.conf
Commit message (Collapse)AuthorAgeFilesLines
* Usermode portion of the support for swap allocation accounting:kib2009-06-231-0/+1
| | | | | | | | | | | - update for getrlimit(2) manpage; - support for setting RLIMIT_SWAP in login class; - addition to the limits(1) and sh and csh limit-setting builtins; - tuning(7) documentation on the sysctls controlling overcommit. In collaboration with: pho Reviewed by: alc Approved by: re (kensmith)
* Integrate the new MPSAFE TTY layer to the FreeBSD operating system.ed2008-08-201-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The last half year I've been working on a replacement TTY layer for the FreeBSD kernel. The new TTY layer was designed to improve the following: - Improved driver model: The old TTY layer has a driver model that is not abstract enough to make it friendly to use. A good example is the output path, where the device drivers directly access the output buffers. This means that an in-kernel PPP implementation must always convert network buffers into TTY buffers. If a PPP implementation would be built on top of the new TTY layer (still needs a hooks layer, though), it would allow the PPP implementation to directly hand the data to the TTY driver. - Improved hotplugging: With the old TTY layer, it isn't entirely safe to destroy TTY's from the system. This implementation has a two-step destructing design, where the driver first abandons the TTY. After all threads have left the TTY, the TTY layer calls a routine in the driver, which can be used to free resources (unit numbers, etc). The pts(4) driver also implements this feature, which means posix_openpt() will now return PTY's that are created on the fly. - Improved performance: One of the major improvements is the per-TTY mutex, which is expected to improve scalability when compared to the old Giant locking. Another change is the unbuffered copying to userspace, which is both used on TTY device nodes and PTY masters. Upgrading should be quite straightforward. Unlike previous versions, existing kernel configuration files do not need to be changed, except when they reference device drivers that are listed in UPDATING. Obtained from: //depot/projects/mpsafetty/... Approved by: philip (ex-mentor) Discussed: on the lists, at BSDCan, at the DevSummit Sponsored by: Snow B.V., the Netherlands dcons(4) fixed by: kan
* Remove more vestiges of /usr/X11R6, but leave mtree for portmgr.dougb2007-05-291-2/+2
|
* Add a short description of how a literal colon ':' can be inlined in thekeramida2005-08-311-0/+5
| | | | | | | value of capability databases, since it's not really obvious how a colon can be escaped, and a pointer to the getcap(3) manpage for more details. Triggered by: a question by Ceri on -questions
* Removed whitespace at BOF, EOL & EOF.schweikh2004-06-061-1/+1
|
* add default vmemoryuse (unlimited), and samplesdillon2002-06-261-0/+3
|
* Fix typo. '|' looks a lot like 'l' in my xterm font.rwatson2002-03-011-1/+1
|
* When having an expanded name for a class, use '|' instead if ':' torwatson2002-03-011-2/+2
| | | | | | | | | seperate the short name and the long name. This was present for most but not all entries. Because the parsing doesn't reject unrecognized entries, this didn't cause failures, but it wasn't strictly correct. Submitted by: Martin Faxer <gmh003532@brfmasthugget.se> MFC after: 2 weeks
* ftp(1) was not the only user of FTP_PASSIVE_MODE, libfetch uses itmikeh2001-12-141-1/+1
| | | | too, so add it back
* ftp(1) uses passive mode by default now, therefore removemikeh2001-12-141-1/+1
| | | | | | FTP_PASSIVE_MODE=YES. Pointed out by: billf
* s/password_format/passwd_format/ru2001-09-111-1/+1
| | | | | PR: misc/30494 Submitted by: "brian j. peterson" <rbw@myplace.org>
* Remove duplicate entry.markm2001-03-121-1/+0
| | | | Submitted by: Paul Herman <pherman@frenchfries.net>
* Updates for Blowfish password hashing.markm2001-03-111-0/+1
|
* o Back out 1.39, it was a bad idea. There was, and should be, arwatson2000-12-191-2/+2
| | | | | | | | | | distinction between the OS copyright message and the message displayed gratuitously to each user at login. Because, well, they may be different, among other things, and boy can a copyright message each login consume some screen space. If people really want to do this, they can copy /COPYRIGHT to /etc/COPYRIGHT. Submitted by: Anders Andersson <anders@codefactory.se>
* o /etc/COPYRIGHT -> /COPYRIGHT, since that's where it's installed.rwatson2000-12-171-2/+2
| | | | Submitted by: Anders Andersson <anders@sanyusan.se>
* Add `password_format=md5' to the default settings. I've had this locallyobrien2000-11-211-0/+8
| | | | | | | | for a while, but a recent email to -stable suggests it should be spelled out as the documentation of "password_format" is sparse. Also add a `des_users' entry. Submitted by: Sean O'Connell <sean@stat.Duke.EDU>
* document sbsize limit.alfred2000-06-021-0/+1
|
* o Improve the comment concerning rebuilding the database using cap_mkdb --rwatson2000-03-261-6/+4
| | | | | | | it's not a speed thing, it's a correctness thing :-) o Reorder the path slightly to be more consistent Reviewed by: jhb
* Synchronize login.conf default path with skel/dot.cshrc and root/dot.cshrcrwatson2000-03-251-1/+1
|
* $Id$ -> $FreeBSD$peter1999-08-271-1/+1
|
* Axe LOGIN_CAP_AUTH.sheldonh1999-08-131-16/+1
| | | | | | PR: 10115 Reported by: Gene Skonicki <gene@cif.rochester.edu> Requested by: jdp
* Be a little clearer about login_getpwclass(3), and its penchant fornik1999-07-141-1/+3
| | | | | | | looking up a record called "root". PR: docs/12377 Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
* Set FTP_PASSIVE_MODE=YES by default in the default login class.jkh1999-05-281-2/+2
|
* Change references from "passwordperiod" to "passwordtime", sincehoek1999-04-301-3/+3
| | | | | | "passwordtime" is what passwd(1) has actually been using. I suspect passwordperiod was the original intent. I can't figure-out which, if either, BSDi uses. If anyone knows...
* Add /usr/X11R6/bin to default path also.jkh1999-04-281-2/+2
|
* remove 'russian' duplicated in commentache1999-04-081-9/+1
|
* Ripped out EDITOR=ee with extreme prejudice.dg1999-01-261-3/+3
|
* Oops, I missed a few more /etc/nologin references yesterday. It appearsasami1999-01-121-2/+2
| | | | | | my check of the tree was incomplete. Sorry guys. Reported by: Ben Smithurst <ben@scientia.demon.co.uk>
* Move nologin from /etc to /var/run. This means one less file that hasasami1999-01-111-2/+2
| | | | | | | | | to be written to /etc. The only essential change is in paths.h, so any third-party software written correctly will pick it up in the next rebuild. Reviewed by: the committers list (actually an old version)
* Slightly clarify wording of "Example".hoek1998-12-291-2/+2
|
* Don't set a MANPATH by default for users who aren't in a login class.cwt1998-12-271-3/+2
| | | | | | | | | man(1) will utilize manpath(1) if MANPATH is unset in the environment, and with our existing manpath.config it is enough to find the X11 pages among others. PR: 8587 Submitted by: Marc Slemko <marcs@znep.com>
* Fix typo: s/;/:/dt1998-09-171-2/+2
| | | | | | | PR: conf/7964 PR: conf/7966 Submitted by: Zach Heilig <zach@gaffaneys.com> Submitted by: Jos Backus <Jos.Backus@nl.origin-it.com>
* Effectively disable resource limit setting by default, leaving themsmith1998-09-161-203/+274
| | | | | | | | | | original contents of the file preserved as examples for administrators that need to enable them. Also add a comment to the examples pointing out that the authentication functionality is largely unused and requires rebuilding libutil. Reviewed by: jkh
* Remove extraneous trailing \'s.steve1998-03-091-3/+3
| | | | | PR: 5949 Submitted by: Studded@dal.net
* Expand default datasize to 22M, perl5 & pine are usual memory eatersache1997-12-031-2/+2
|
* Revisions 1.14 and 1.9.2.3 fixed PR conf/5127.obrien1997-12-011-1/+1
|
* datasize-curr -> datasize-cur, typo fix.steve1997-11-271-2/+2
| | | | | PR: 5152 Submitted by: owaki@st.rim.or.jp
* daemon: bump maxproc from 256 to 512ache1997-09-261-2/+2
| | | | 256 means f.e. that only 256 users at once can be served by your HTTPD
* Further tweak to 'daemon' so that the hard limit for coredumpsizepeter1997-09-231-2/+3
| | | | | | is not set to zero, only the soft limit. This means that non-root processes started from /etc/rc* can explicitly raise the coredump limit if they wish.
* Raise some of the 'daemon' class limits as used by things startedpeter1997-09-231-2/+4
| | | | | | | from /etc/rc, including inetd and it's children, stuff from /usr/local/etc/rc.d (eg: squid, apache). The default limits are causing a lot of problems including things like fsck failing on large disks. I hope I've understood the quirks of the override mechanism properly.
* Fix typoguido1997-07-111-2/+2
|
* Fix "daemon" class, Apache not works from /etc/rc otherwise.ache1997-05-231-6/+6
| | | | | | Among bumping several limits, most interesting thing is that Apache requires than "filesize=64M" restriction must be removed. I think it is due to mmap() usage in apache, but I am not shure.
* Restore backwards compatible default behavior for requirehomepst1997-05-231-2/+2
|
* Correct comment to show correct path to cap_mkdbgpalmer1997-05-191-2/+2
|
* Add 'russian' users classache1997-05-011-1/+9
|
* Remove term=dumb from default entry: ovverrides TERM variable for loginache1997-03-201-2/+1
|
* Fix typing error in default class: rc= instead of tc=ache1997-02-261-2/+2
|
* For root & daemon classes bump max openfiles to 1024 to really activateache1997-02-261-3/+3
| | | | bumped select limit
* Revert $FreeBSD$ to $Id$peter1997-02-231-1/+1
|
* Made more reasonable as a set of defaults. Remove cruft, fix a coupledavidn1997-01-221-45/+47
| | | | of errors and eliminate cap_mkdb errors. Closes PR misc/2551.
OpenPOWER on IntegriCloud