summaryrefslogtreecommitdiffstats
path: root/etc
Commit message (Collapse)AuthorAgeFilesLines
* Remove /var/spool/uucp subtree, not needed for 'cu'ache2001-10-261-14/+0
|
* The same unbreakage (0755 -> 0775) for /var/games and subdirsache2001-10-251-3/+3
|
* Fix /var/mail, /var/rwho and /var/spool/lock back to 0775ache2001-10-251-3/+3
| | | | Not sure about other dirs with the same damage (0755) by recent commit.
* Style these once again.ru2001-10-253-14/+13
|
* Finish the removal of uucp scripts.ru2001-10-251-9/+0
| | | | Forgotten by: kris
* Re-commit www:wwwache2001-10-252-0/+2
| | | | | | | | If anybody wants to remove them for some reason, please consider "pop" removing first. Approved by: arch discussion from Oct 20 MFC after: 3 days
* Chroot to /tftpboot for tftp.obrien2001-10-221-1/+1
| | | | Reviewed by: mdodd, peter
* Do an ipf -y after bringing up ppp to ensure rules which mention ppp getdarrenr2001-10-207-0/+98
| | | | | | | matched. Moification on PR to handle ipnat not being dependant on ipfilter_enable PR: 22859
* Allow ipnat_enable to be set to "yes" without requiring ipfiltre_enable todarrenr2001-10-207-77/+112
| | | | | | be set to "yes" PR: 25223
* Create /var/db/ipfdarrenr2001-10-201-0/+2
| | | | PR: 27070
* Put in place for using ipfs use on shutdown and startup.darrenr2001-10-209-0/+78
| | | | PR: 27070
* Add the ipfilter directory in share/examplesdarrenr2001-10-201-0/+2
| | | | PR: 26763
* Handle the lack of nfs server or client support in the kernel bydougb2001-10-198-10/+102
| | | | kldload'ing the appropriate modules before enabling the service.
* Update to note that rpc.statd and rpc.lockd are now needed foralfred2001-10-181-2/+2
| | | | | | client side NFS mounts. Stumbled upon by: rwatson
* Back previous revision out until it has been discussed on -arch andsheldonh2001-10-181-1/+0
| | | | motivated. Currently, it is under dispute.
* Back previous revision out until it has been discussed on -arch andsheldonh2001-10-181-1/+0
| | | | motivated. Currently, it is under dispute.
* Ensure that /var/log/lastlog exists so that login doesn't complain.bsd2001-10-175-0/+15
| | | | | Submitted by: Harti Brandt <brandt@fokus.gmd.de> MFC after: 2 weeks
* Add www:www (80:80) for upcoming Apache changesache2001-10-172-0/+2
|
* Remove references to nfsiod and nfs_client_flags now that they arejhb2001-10-108-8/+0
| | | | | | obsolete. Submitted by: Gordon Tetlow <gordont@gnf.org>
* Update reference URL.archie2001-10-101-1/+1
| | | | MFC after: 3 days
* Fix tabbing damage in last commit.obrien2001-10-101-3/+3
|
* Follow existing style a little betterdougb2001-10-101-3/+6
|
* Add a dumpdir variable that determines where savecore stores crash dumps.des2001-10-092-2/+6
| | | | I've had this on my development box for ages...
* Do not clobber users hostname.mc file if freebsd.mc changes (likely after angshapiro2001-10-081-1/+1
| | | | | | | installworld). Submitted by: Steve Watt <steve@Watt.COM> MFC after: 2 days
* Add /etc files for ia64.dfr2001-10-063-0/+540
|
* Quote the value of pccard_ether_delay, the only unquoted value in thesheldonh2001-10-051-1/+1
| | | | entire file.
* We don't ship pim6dd/pim6sd any more.ume2001-10-031-2/+4
| | | | MFC after: 1 week
* Add commented-out/prototype entries for samba's swat configuration tool.jkh2001-10-032-1/+4
| | | | | Requested by: "William Wong" <willwong@samurai.com> MFC after: 1 week
* Sigh, fix the unfixed typo: s/-l/-L/.ru2001-10-021-1/+1
|
* Fix a typo: s/-or/-o/.knu2001-10-021-1/+1
|
* Add ()'s around the warning message when skipping a startup script.obrien2001-10-011-1/+1
| | | | | | | Also don't give the whole path, just the script name. Submitted by: des Requested by: jhb
* Tweak the Skipping ${script} logic to also handle symlinks.obrien2001-10-011-2/+2
| | | | Also echo with "-n".
* Remove (commented out) use of pam_ssh where it won't work.markm2001-10-011-6/+0
|
* Move the uucpd entry down a bit to live with other optional serviceskris2001-10-011-1/+3
| | | | | | and correct the path to /usr/local as an example. Submitted by: ru
* Put back /var/spool/uucp so it can be used for serial port locking.kris2001-10-011-0/+14
|
* UUCP removal Phase III.kris2001-10-016-123/+0
|
* UUCP removal phase II. These directories are now created by thekris2001-10-013-20/+0
| | | | freebsd-uucp port.
* Fix the problem that the startup directory is printed out if itobrien2001-09-301-1/+1
| | | | | | is empty. Submitted by: Udo Schweigert <udo.schweigert@siemens.com>
* Add missing word in comment.dd2001-09-301-2/+1
|
* Add `dict' per http://www.iana.org/assignments/port-numbers and RFC 2229.obrien2001-09-291-0/+2
|
* Backout revision 1.9 that added `myname.my.domain' as another alias forru2001-09-291-2/+2
| | | | | | | | | | | | | | | | `localhost'. If your /etc/nsswitch.conf has ``hosts: files dns'', and you changed `myname.my.domain' in /etc/hosts to match hostname(1), and you run inetd(8) with the -l option, any connect to `myname' using its real IP address through inetd(8), e.g. `ftp -a myname', will spam your /var/log/messages with: inetd[PID]: warning: /etc/hosts.allow, line 23: host name/name mismatch: myname.my.domain != localhost This is especially bad for -STABLE, where /etc/host.conf defaults to "files first then DNS" resolution order. Noticed by: Igor Kucherenko <kivvy@sunbay.com> MFC after: 1 week
* Add an apparently working entry for the BayStack 660, 2mbps directbrooks2001-09-271-0/+6
| | | | | | sequence wireless card. Approved by: imp (in principle)
* Enable vmiodirenable by default. Remove incorrect comment from sysctl.conf.dillon2001-09-261-6/+0
| | | | MFC after: 1 week
* Give people a chance to do things before fsck is run.phk2001-09-261-0/+6
| | | | MFC after: 2 weeks
* Run rc.devfs a little bit earlier.obrien2001-09-261-6/+6
| | | | | | | Many people like to use generic devices in rc.syscons, etc.. So rc.devfs needs to run before those rc files. Requested by: Jos Backus <josb@cncdsl.com>
* Let people know when a startup script is skipped because it is notobrien2001-09-251-0/+2
| | | | | | executable. Suggested by: gad
* Back out rev 1.274. The previous behavior was documented in rc.8 andobrien2001-09-241-1/+1
| | | | | | | the original commit of local_startup depended on the scripts being executable; so there is too much precedence to change it now. About all anyone could agree on is that rev 1.274 broke POLA and before rev 1.274 also broke POLA.
* + explicitly use the shell to run ${local_startup} so one does not have toobrien2001-09-241-2/+2
| | | | | ensure the executable bit is set on the scripts. + Fix VCS ID's
* Add a new rc.conf variable, cloned_interfaces, to create clonedbrooks2001-09-198-7/+72
| | | | interfaces at boot.
* The vfs.nfs.bufpackets sysctl is in the client, not the server. Move itpeter2001-09-197-63/+56
| | | | | to the client section. Turn off nfsiod, it no longer exists (now just kthreads). I need revisit nfsiod so that we have an argument passthrough.
OpenPOWER on IntegriCloud