summaryrefslogtreecommitdiffstats
path: root/etc
Commit message (Collapse)AuthorAgeFilesLines
* Have mktemp(1) construct the temporary file name for us insteadmtm2003-06-307-7/+7
| | | | | | of providing a template manually. Submitted by: Lars Eggert <larse@isi.edu>
* Allow diskless_remount files to contain path beginning with / which willbrooks2003-06-302-0/+36
| | | | | | | be mounted relative to the NFS root mountpoint. Reviewed by: dillon at backplane.com MFC After: 3 days
* Properly use ld.so.conf and ld-elf.so.conf as discussed in the manual page.trhodes2003-06-301-4/+4
| | | | | | PR: 25527 Submitted by: Alexey Neyman <alex.neyman@auriga.ru> Reviewed by: jdp
* Add /rescue bits. This basically encompasses all of bin and sbin alonggordon2003-06-291-0/+2
| | | | | | with a couple of bits from usr.bin in a crunchgen'd binary. Submitted by: Tim Kientzle <kientzle@acm.org>
* Ugh. Remove debugging echo.mtm2003-06-291-1/+1
|
* Implement individual operations on static and dhcp interfaces. Previouslymtm2003-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.
* o Hookup rc.d/routing and rc.d/netoptionsmtm2003-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.
* o Repocopied routing and netoptions from network2 and network3, respectively.mtm2003-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)
* - Add a software watchdog facility.smkelly2003-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)
* install new 802.11 headerssam2003-06-251-0/+2
|
* Install the include file for the netgraph ATM node.harti2003-06-251-0/+2
|
* Check by [ $? -eq 0 ] rather than $?.kuriyama2003-06-241-2/+2
| | | | Reviewed by: mtm
* Remove the devdb stuff, the kernel answers these questions just fine.phk2003-06-202-18/+1
|
* Add a script to automatically attach gbde devices found in fstabwollman2003-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.
* o Correct usage example: ep(4) does not have 'link0' option.maxim2003-06-161-2/+2
| | | | | | | | o Fix a typo. PR: misc/51955 Submitted by: Xander <x+freebsd-gnats@surfnet.nl> MFC after: 1 week
* Update a comment about symlinking named's pid file to correctlymtm2003-06-141-1/+1
| | | | | | reflect the code. Suggested by: maxim
* Add a system policy, and have the login and su policies include it ratherdes2003-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.
* This is a driver for the physical layer chips used in ATM interfaces.harti2003-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.
* Fixed some style bugs (disorder and long lines).bde2003-06-111-4/+7
|
* Old-promised removing of deprecated locale namesache2003-06-104-192/+0
|
* Bit of modernising. Remove old KerberosIV entries, add examplemarkm2003-06-091-9/+4
| | | | | sshd entries, sort internal services the same as everywhere else.
* o Have rc.d/apm report on the status of apm.mtm2003-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)
* o Fix a typomtm2003-06-091-3/+23
| | | | | | o Fill in the ipx_down() routine. Submitted by: ceri
* Previously, a "forced" command always exited successfully (with themtm2003-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.
* - Remove a debugging echo.mtm2003-06-081-1/+3
| | | | | - When we change the IFS make sure to return it to its previous value before executing a command.
* Implement *_down network routines for ifconfig'ed interfaces, clonedmtm2003-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.
* follow dhcp_* changes.ume2003-06-071-5/+7
|
* The dhcp_program and dhcp_flags variables have to be renamed tomtm2003-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>
* Add ru_RU.CP1251ache2003-06-062-0/+6
|
* Remove a debugging aid the crept in during the last commit. It doesn'tmtm2003-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>
* Since FreeBSD has never had a stock NNTP server, move the nntp lineyar2003-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
* Add zh_CN.GBKache2003-06-012-0/+6
|
* Move networkfs_types from mountcritlocal into defaults/rc.conf as netfs_types.gordon2003-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.
* Try to describe the control flags a little better.des2003-06-011-2/+4
|
* nwfs is network filesystem. Treat it as such when mounting filesystems.gordon2003-06-011-1/+1
|
* Apparently ldconfig(8) prefers the format as the first argumentmtm2003-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
* Install kpasswdd.mtm2003-05-181-1/+1
| | | | Approved by: markm/mentor, re/rwatson
* Add new directories from the XFree86 4.3.0 update.anholt2003-05-141-0/+28
| | | | Approved by: re (murray)
* pccard_ether didn't setup IPv6 after rcTOS sweep.ume2003-05-123-293/+299
| | | | | Reviewed by: mtm and dougb Approved by: re (scott)
* Comment out the entire nomatch entry. The partially commented outimp2003-05-091-3/+3
| | | | | | entry causes problems :-( This effectively backs out the commit the re@ allowed me to commit.
* Don't use logger by default just yet for unmatched devices. It is aimp2003-05-071-2/+3
| | | | | | little too chatty on boot and doesn't give enough information. Approved by: re@ (bmah)
* Hook devfs.conf up to the build.dougb2003-05-061-2/+2
| | | | Approved by: re (scottl)
* s/kadmind5/kadmin/mtm2003-05-061-1/+1
| | | | Approved by: markm (mentor)
* Allow users to configure stuff in /dev once again by re-doing the devfsdougb2003-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.
* Back out the amd64 additions. Hammer doesn't do APM, and we certainly aren'tobrien2003-05-062-2/+2
| | | | ready for any ibcs2_compat bits yet.
* We won't do APM on Hammer -- ACPI is the game there.obrien2003-05-051-1/+1
|
* * Add the nut port from the IANA list (for the nut port)dougb2003-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)
* Add traditional BSD names (sio[0-3]) to the finger-friendly com[1-4]dougb2003-05-051-4/+4
| | | | | entries so that you can do things like 'tip sio1' without having to remember the DOS equivalent.
* Add the 'N' flag to the entries for three log files which are *not*gad2003-05-051-3/+3
| | | | | | written to by syslogd: /var/log/{daily.log,weekly.log,monthly.log} MFC after: 1 week
* use /etc/rc.d/network_ipv6 instead of obsoleted /etc/rc.network6.ume2003-05-051-2/+2
|
OpenPOWER on IntegriCloud