summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Fix spelling nit in error message.gordon2002-06-051-1/+1
|
* o Remove ftp.freebsd.org from the USA servers and add to thejedgar2002-06-052-6/+10
| | | | | | | Denmark servers. o Add snapshots.jp.FreeBSD.org. Approved by: brian
* Add information about setting up media to use the multi-volume supportmurray2002-06-052-0/+120
| | | | | | in sysinstall. Reviewed by: ru
* Grammar nit.obrien2002-06-041-1/+1
| | | | Submitted by: keramida
* Change some "process id" variables from 'int' to 'pid_t', renaming somegad2002-06-041-28/+31
| | | | | | | | of them to keep better track of which-is-which (multiple variables were named 'pid'). Moved a global pid-variable into the only routine that used it. Net result: fixes two compile-time warnings... MFC after: 2 weeks
* Cosmetic improvements to some of the syslog() calls in here (in some casesgad2002-06-041-35/+44
| | | | | | simply getting the indentation right when the statement wraps). MFC after: 2 weeks
* Fix all the 'return' statements in here to follow style(9).gad2002-06-041-24/+24
| | | | MFC after: 2 weeks
* Avoid checking WIFEXITED and WTERMSIG in some error situations where thegad2002-06-041-3/+6
| | | | | | value in wstatus is not related to the process that we care about. MFC after: 2 weeks
* Backout revision 1.2 since it didn't work and replace it with a fix thatjhb2002-06-031-6/+2
| | | | | | actually does work. Ignore errors from kldload(2) if the errno value is EEXIST. It would help if this return value were documented in the kldload(2) manual page.
* Add a missing ``a''.brian2002-06-031-1/+1
|
* Stop using the depreciated 'union wait' definitions, moving to a moregad2002-06-032-26/+25
| | | | | | | standard handling of wait()-related routines. Submitted by: mike MFC after: 2 weeks
* Fix handling of the 'noError' variable. According to the code comments,jhb2002-06-032-24/+22
| | | | | | | | | | | one can set the 'noError' variable to ignore any errors that occur for the next command. However, the code was only unsetting 'noError' when an error actually occurred, so if you set 'noError', the next command completed ok, and the command after that failed, the second command's failure would be ignored. This fixes this by performing the 'noError' check earlier and then unsetting 'noError' after every command that is run. Sponsored by: The Weather Channel
* Add a 'mediaClose' script command to close the open media. An example usejhb2002-06-034-0/+28
| | | | | | | would be to unmount the CD you installed from and prompt the user to eject it before rebooting the machine. Sponsored by: The Weather Channel
* Fix typo in the BSD copyright: s/withough/without/schweikh2002-06-026-6/+6
| | | | | Spotted and suggested by: des MFC after: 3 weeks
* Don't send a RAD_NAS_IP_ADDRESS attribute as RAD_NAS_IDENTIFIER isbrian2002-06-021-0/+8
| | | | | | | | | | | | | | | | | sufficient. In fact, using both breaks the radiator RADIUS daemon when used with a db as it maps both attributes to the same field value and then fails the insert. I decided to remove RAD_NAS_IP_ADDRESS on the basis that rfc2138 says: An Access-Request MUST contain a User-Name attribute. It SHOULD contain either a NAS-IP-Address attribute or NAS-Identifier attribute (or both, although that is not recommended). It MUST despite the fact that this not recommended bit was removed from the updated rfc.
* Fix spelling errors: minumum, overriden, inherittedschweikh2002-06-021-6/+6
| | | | MFC after: 3 weeks
* Don't exit immediately if an error occurs, continue but exit non-zero.tjr2002-06-021-5/+9
|
* Skip duplicated prefixes in get_prefix().ume2002-06-013-14/+19
| | | | Obtained from: KAME
* KNFume2002-06-011-286/+264
| | | | Obtained from: KAME
* sprintf -> snprintfume2002-06-011-17/+25
| | | | Obtained from: KAME
* Brush up descriptions of sendmail menu last added.matusita2002-06-012-4/+8
| | | | Submitted by: gshapiro
* Add 'Sendmail' menu to set sendmail_enable variable.matusita2002-06-014-2/+44
| | | | Reviewed by: bmah (description only)
* Don't load a module from /stand/modules in the MFS root if it is already injhb2002-05-311-0/+4
| | | | the kernel.
* We don't build libc_r on sparc64 for the moment.ru2002-05-311-1/+1
|
* Fix integer overflow causing disk/partition size display wrappingpb2002-05-312-6/+6
| | | | above 4GB.
* pkg_version was incorrectly claiming that 1.5 == 1.5.0.1, becausebmah2002-05-311-0/+24
| | | | | | | | | we weren't properly checking for the case that the two version strings being compared had different numbers of components. This has been fixed. Pointed out by: sobomax Reviewed by: silence on -ports
* - Document the new `diskInteractive' variable.jhb2002-05-312-0/+34
| | | | | | - Document the tcpMenuSelect command. Sponsored by: The Weather Channel
* If 'netInteractive' is set to true in an installation script, thenjhb2002-05-311-0/+18
| | | | | | temporarily turn off the nonInteractive variable around the DHCP and IPv6 Yes/No questions in a network device setup so that those questions are asked.
* Add a 'diskInteractive' variable that can be set to interactively partitionjhb2002-05-316-8/+18
| | | | and label a disk from a sysinstall script.
* Remove DESTDIR which is already included in DOCDIR.jedgar2002-05-311-2/+2
| | | | Submitted by: jhay
* Typo fix: syste -> systemkeramida2002-05-311-1/+1
|
* Fix syntax error (label with no statement).wollman2002-05-301-0/+1
|
* Fix conflict with <paths.h> by renaming _PATH_LOGIN to _PATH_SLIP_LOGIN,wollman2002-05-302-10/+15
| | | | and likewise LOGOUT for consistency. Fix a few nearby style bugs.
* Fix preprocessor directive syntax (text after #else).wollman2002-05-301-3/+5
| | | | This program is not likely to compile if DEBUG is ever defined.
* mdoc(7) police: Make this look like an average manpage.ru2002-05-301-20/+17
|
* mdoc(7) police: markup nits.ru2002-05-301-2/+4
|
* mdoc(7) police: make SYNOPSIS really match usage().ru2002-05-301-7/+3
|
* mdoc(7) police: markup nits.ru2002-05-301-7/+11
|
* mdoc(7) police: don't use .Pq with plain text, this breaks hyphenation.ru2002-05-301-1/+1
|
* mdoc(7) police: markup nit.ru2002-05-301-1/+1
|
* mdoc(7) police: removed an extra .Op call.ru2002-05-301-1/+1
|
* mdoc(7) police: tidy up the markup.ru2002-05-301-66/+70
|
* Use the predefined DOCDIR instead of hard-coding /usr/share/doc/bind,jedgar2002-05-291-3/+2
| | | | add support for DESTDIR.
* mdoc(7) police: nits.ru2002-05-291-4/+4
|
* Put on peril sensitive sunglasses and turn C++ stuff back on.peter2002-05-291-3/+0
|
* Comment out comments trailing #endif directivesalfred2002-05-281-16/+17
|
* Have this use 'static const char rcsid' instead of __RCSID()gad2002-05-281-3/+4
| | | | | Discussed with: bde, obrien MFC after: 10 days
* Assume __STDC__, remove non-__STDC__ code.alfred2002-05-284-60/+0
|
* MFS: two more testcases highlighting recently discovered problem with versionsobomax2002-05-281-0/+2
| | | | comparison routine.
* Remove references to the update/noupdate flag from the descriptioniedowse2002-05-281-4/+1
| | | | | | | and examples of the "-s" option, since these two features operate completely independently of each other. Reviewed by: obrien
OpenPOWER on IntegriCloud