aboutsummaryrefslogtreecommitdiff
path: root/etc
Commit message (Collapse)AuthorAgeFilesLines
* s/man page/manual page/, to make the default announcementJoseph Koshy2003-07-031-1/+1
| | | | | | | hopefully more comprehensible to a non-geek. Notes: svn path=/head/; revision=117187
* Have mktemp(1) construct the temporary file name for us insteadMike Makonnen2003-06-307-7/+7
| | | | | | | | | of providing a template manually. Submitted by: Lars Eggert <larse@isi.edu> Notes: svn path=/head/; revision=117088
* Allow diskless_remount files to contain path beginning with / which willBrooks Davis2003-06-302-0/+36
| | | | | | | | | | be mounted relative to the NFS root mountpoint. Reviewed by: dillon at backplane.com MFC After: 3 days Notes: svn path=/head/; revision=117087
* Properly use ld.so.conf and ld-elf.so.conf as discussed in the manual page.Tom Rhodes2003-06-301-4/+4
| | | | | | | | | PR: 25527 Submitted by: Alexey Neyman <alex.neyman@auriga.ru> Reviewed by: jdp Notes: svn path=/head/; revision=117077
* Add /rescue bits. This basically encompasses all of bin and sbin alongGordon Tetlow2003-06-291-0/+2
| | | | | | | | | with a couple of bits from usr.bin in a crunchgen'd binary. Submitted by: Tim Kientzle <kientzle@acm.org> Notes: svn path=/head/; revision=117035
* Ugh. Remove debugging echo.Mike Makonnen2003-06-291-1/+1
| | | | Notes: svn path=/head/; revision=117032
* Implement individual operations on static and dhcp interfaces. PreviouslyMike Makonnen2003-06-292-26/+158
| | | | | | | | | | | | | | | | | | | network interfaces could only be turned on and off as a group (all static interfaces or all dhcp interfaces). When used to start the interface a 'long form' ifconfig output is used to show the status of the interface, but when stopping an interface the script will simply output the name of the interface. This is simply my personal preference. Hopefully as this functionality matures we can stabilize on a prefered form of output for these scripts. A stop command to the dhclient script now explicitly releases the dhcp lease. Behaviour at system shutdown; however, is unchanged since dhclient is not, by default, run at that time. The client will not release its lease at shutdown. Notes: svn path=/head/; revision=117021
* o Hookup rc.d/routing and rc.d/netoptionsMike Makonnen2003-06-2910-11/+11
| | | | | | | | | | o Ensure rc.d/network2 and rc.d/network3 are not automatically run during boot o Modify script headers so rcorder(8) can put the two scripts in the correct sequence. Notes: svn path=/head/; revision=117020
* o Repocopied routing and netoptions from network2 and network3, respectively.Mike Makonnen2003-06-292-7/+24
| | | | | | | | | | | o Change the provider names. o Separate routing into two parts: static routing and routing options. The start command will run both parts, but they can be run separately using the static and options command, respectively: (/etc/rc.d/routing static; /etc/rc.d/routing options) Notes: svn path=/head/; revision=117019
* - Add a software watchdog facility.Sean Kelly2003-06-263-2/+54
| | | | | | | | | | | | This commit has two pieces. One half is the watchdog kernel code which lives primarily in hardclock() in sys/kern/kern_clock.c. The other half is a userland daemon which, when run, will keep the watchdog from firing while the userland is intact and functioning. Approved by: jeff (mentor) Notes: svn path=/head/; revision=116874
* install new 802.11 headersSam Leffler2003-06-251-0/+2
| | | | Notes: svn path=/head/; revision=116818
* Install the include file for the netgraph ATM node.Hartmut Brandt2003-06-251-0/+2
| | | | Notes: svn path=/head/; revision=116811
* Check by [ $? -eq 0 ] rather than $?.Jun Kuriyama2003-06-241-2/+2
| | | | | | | Reviewed by: mtm Notes: svn path=/head/; revision=116774
* Remove the devdb stuff, the kernel answers these questions just fine.Poul-Henning Kamp2003-06-202-18/+1
| | | | Notes: svn path=/head/; revision=116608
* Add a script to automatically attach gbde devices found in fstabGarrett Wollman2003-06-171-0/+92
| | | | | | | | | (or rc.conf) at boot time, and detach them when shutting down. Not added to the Makefile to give the rcng gurus an opportunity to improve it. Notes: svn path=/head/; revision=116456
* o Correct usage example: ep(4) does not have 'link0' option.Maxim Konovalov2003-06-161-2/+2
| | | | | | | | | | | o Fix a typo. PR: misc/51955 Submitted by: Xander <x+freebsd-gnats@surfnet.nl> MFC after: 1 week Notes: svn path=/head/; revision=116436
* Update a comment about symlinking named's pid file to correctlyMike Makonnen2003-06-141-1/+1
| | | | | | | | | reflect the code. Suggested by: maxim Notes: svn path=/head/; revision=116352
* Add a system policy, and have the login and su policies include it ratherDag-Erling Smørgrav2003-06-144-23/+35
| | | | | | | | | than duplicate it. This requires OpenPAM Dianthus, which was committed two weeks ago; installing these files on a system running a world older than June 1st, 2003 will cause login(1) and su(1) to fail. Notes: svn path=/head/; revision=116331
* This is a driver for the physical layer chips used in ATM interfaces.Hartmut Brandt2003-06-121-0/+2
| | | | | | | | | | It currently supports the PMC Sierra Lite, Ultra and 622 chips and the IDT 77105. The driver handles media options and state in a consistent manner for ATM drivers. The next commit to the midway driver will make it use utopia. Notes: svn path=/head/; revision=116258
* Fixed some style bugs (disorder and long lines).Bruce Evans2003-06-111-4/+7
| | | | Notes: svn path=/head/; revision=116223
* Old-promised removing of deprecated locale namesAndrey A. Chernov2003-06-104-192/+0
| | | | Notes: svn path=/head/; revision=116133
* Bit of modernising. Remove old KerberosIV entries, add exampleMark Murray2003-06-091-9/+4
| | | | | | | | sshd entries, sort internal services the same as everywhere else. Notes: svn path=/head/; revision=116119
* o Have rc.d/apm report on the status of apm.Mike Makonnen2003-06-092-3/+29
| | | | | | | | | o Modify rc.d/apmd to make correct use of this information. Submitted by: Simon L. Nielsen <simon@nitro.dk> (with minor modifications) Notes: svn path=/head/; revision=116102
* o Fix a typoMike Makonnen2003-06-091-3/+23
| | | | | | | | | o Fill in the ipx_down() routine. Submitted by: ceri Notes: svn path=/head/; revision=116100
* Previously, a "forced" command always exited successfully (with theMike Makonnen2003-06-091-37/+65
| | | | | | | | | | | | exception of the default 'status' command) regardless of whether the executed command was actually successfull or not. Forced scripts should always correctly reflect the outcome of the command. NOTE: exit values are treated as booleans. We don't care what the actual exit value was, only whether it was successfull or not. Notes: svn path=/head/; revision=116097
* - Remove a debugging echo.Mike Makonnen2003-06-081-1/+3
| | | | | | | | - When we change the IFS make sure to return it to its previous value before executing a command. Notes: svn path=/head/; revision=116032
* Implement *_down network routines for ifconfig'ed interfaces, clonedMike Makonnen2003-06-081-0/+75
| | | | | | | | | interfaces, interface aliases, user supplied ifconfig scripts, and ipx interfaces. The ipx routine fails unconditionaly at the moment. Someone who has a need for it can fill it in with the appropriate incantations. Notes: svn path=/head/; revision=116029
* follow dhcp_* changes.Hajimu UMEMOTO2003-06-071-5/+7
| | | | Notes: svn path=/head/; revision=115980
* The dhcp_program and dhcp_flags variables have to be renamed toMike Makonnen2003-06-073-4/+6
| | | | | | | | | | | | | | | | | take advantage of the rc.subr(8) glue. They are renamed dhclient_program and dhclient_flags. o Rename them in rc.conf(5) o Rename them in /etc/defaults/rc.conf o Add the deprecated variables to /etc/rc.subr o Isolate the use of the 'command' variable to the NetBSD specific parts in /etc/rc.d/dhclient. o Now that dhcp_flags has also been renamed it will be applied properly by rc.subr(8) glue code. Reported by: John Nielsen <john@jnielsen.net> Notes: svn path=/head/; revision=115950
* Add ru_RU.CP1251Andrey A. Chernov2003-06-062-0/+6
| | | | Notes: svn path=/head/; revision=115912
* Remove a debugging aid the crept in during the last commit. It doesn'tMike Makonnen2003-06-061-1/+1
| | | | | | | | | | really make much difference since this script is not used during startup and is due to be removed before RELENG_5. Submitted by: "Simon L. Nielsen" <simon@nitro.dk> Notes: svn path=/head/; revision=115896
* Since FreeBSD has never had a stock NNTP server, move the nntp lineYaroslav Tykhiy2003-06-061-1/+5
| | | | | | | | | | | | | | | | | | | down to the section of optional mail/news services. Change the nntpd location to /usr/local/libexec since it's an optional software. Henceforth, nntpd will be advised to run as "news", which is a standard user in the system, instead of "usenet", which has never existed in the default master.passwd(5). Note: It's not "news:news" since inetd(8) runs a service at the specified user's login group by default. Add a blank comment line above the uucpd line so the section looks uniform. Partly pointed out by: Alexey Neyman <alex.neyman at auriga.ru> MFC after: 1 week Notes: svn path=/head/; revision=115892
* Add zh_CN.GBKAndrey A. Chernov2003-06-012-0/+6
| | | | Notes: svn path=/head/; revision=115627
* Move networkfs_types from mountcritlocal into defaults/rc.conf as netfs_types.Gordon Tetlow2003-06-013-4/+12
| | | | | | | | | Also add logic into mountcritremote to add extra_netfs_types to the list. This unbreaks putting smbfs, portalfs and now nwfs in fstab. Notes: svn path=/head/; revision=115585
* Try to describe the control flags a little better.Dag-Erling Smørgrav2003-06-011-2/+4
| | | | Notes: svn path=/head/; revision=115584
* nwfs is network filesystem. Treat it as such when mounting filesystems.Gordon Tetlow2003-06-011-1/+1
| | | | Notes: svn path=/head/; revision=115582
* Apparently ldconfig(8) prefers the format as the first argumentMike Makonnen2003-05-181-3/+4
| | | | | | | | | | | | with the rest of the options following it. This caused problems for people using ldconfig_insecure=yes because the '-i' switch was being positioned before the format argument. Approved by: markm/mentor (implicit), re/rwatson PR: 47430 Notes: svn path=/head/; revision=115124
* Install kpasswdd.Mike Makonnen2003-05-181-1/+1
| | | | | | | Approved by: markm/mentor, re/rwatson Notes: svn path=/head/; revision=115123
* Add new directories from the XFree86 4.3.0 update.Eric Anholt2003-05-141-0/+28
| | | | | | | Approved by: re (murray) Notes: svn path=/head/; revision=114989
* pccard_ether didn't setup IPv6 after rcTOS sweep.Hajimu UMEMOTO2003-05-123-293/+299
| | | | | | | | Reviewed by: mtm and dougb Approved by: re (scott) Notes: svn path=/head/; revision=114942
* Comment out the entire nomatch entry. The partially commented outWarner Losh2003-05-091-3/+3
| | | | | | | | | entry causes problems :-( This effectively backs out the commit the re@ allowed me to commit. Notes: svn path=/head/; revision=114852
* Don't use logger by default just yet for unmatched devices. It is aWarner Losh2003-05-071-2/+3
| | | | | | | | | little too chatty on boot and doesn't give enough information. Approved by: re@ (bmah) Notes: svn path=/head/; revision=114799
* Hook devfs.conf up to the build.Doug Barton2003-05-061-2/+2
| | | | | | | Approved by: re (scottl) Notes: svn path=/head/; revision=114780
* s/kadmind5/kadmin/Mike Makonnen2003-05-061-1/+1
| | | | | | | Approved by: markm (mentor) Notes: svn path=/head/; revision=114771
* Allow users to configure stuff in /dev once again by re-doing the devfsDoug Barton2003-05-062-13/+73
| | | | | | | | | | | script to read /etc/devfs.conf, and take appropriate actions based on what it finds there. The (commented out) examples in the new devfs.conf file are taken in part from the old rc.devfs script. Notes: svn path=/head/; revision=114769
* Back out the amd64 additions. Hammer doesn't do APM, and we certainly aren'tDavid E. O'Brien2003-05-062-2/+2
| | | | | | | ready for any ibcs2_compat bits yet. Notes: svn path=/head/; revision=114768
* We won't do APM on Hammer -- ACPI is the game there.David E. O'Brien2003-05-051-1/+1
| | | | Notes: svn path=/head/; revision=114766
* * Add the nut port from the IANA list (for the nut port)Doug Barton2003-05-051-0/+3
| | | | | | | | * Add the rndc port, by common usage (TCP only since rndc doesn't use UDP, and the port is not officially assigned) Notes: svn path=/head/; revision=114761
* Add traditional BSD names (sio[0-3]) to the finger-friendly com[1-4]Doug Barton2003-05-051-4/+4
| | | | | | | | entries so that you can do things like 'tip sio1' without having to remember the DOS equivalent. Notes: svn path=/head/; revision=114760
* Add the 'N' flag to the entries for three log files which are *not*Garance A Drosehn2003-05-051-3/+3
| | | | | | | | | written to by syslogd: /var/log/{daily.log,weekly.log,monthly.log} MFC after: 1 week Notes: svn path=/head/; revision=114747