summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Document /boot/mbr (non-interactive boot block)pav2007-05-121-0/+10
| | | | | | PR: doc/111840 Submitted by: Warren Block <wblock@wonkity.com> MFC after: 1 week
* o Make iostat -Ix work: print per-interval I/O extended statistics.maxim2007-05-121-7/+25
| | | | | | PR: bin/112559 Submitted by: Dan Nelson MFC after: 2 weeks
* Update nologin(5) to match the modern reality of login.conf(5) and PAM.yar2007-05-101-12/+44
|
* o Add "line" device to a list of mixer(8) devices.maxim2007-05-091-1/+1
| | | | | | PR: docs/112520 Submitted by: Pietro Cerutti MFC after: 1 week
* Print provider's ident when in verbose mode.pjd2007-05-061-1/+6
|
* Back out all POSIXified *env() changes.ache2007-05-015-7/+7
| | | | | | | | | Not because I admit they are technically wrong and not because of bug reports (I receive nothing). But because I surprisingly meets so strong opposition and resistance so lost any desire to continue that. Anyone who interested in POSIX can dig out what changes and how through cvs diffs.
* Correctly inizialize local/unix transport. I broke it in rev.1.15.matteo2007-05-011-97/+162
| | | | | PR: bin/1122566 MFC after: 1 week
* o I failed to find a suitable explanation why traceroute(8) andmaxim2007-04-301-2/+2
| | | | | | | | | | traceroute6(8) force -w flag (wait time) to be > 1 sec. Make it possible to use 1 sec wait time. PR: bin/110933 Submitted by: Dmitry Marakasov Reviewed by: freebsd-net (silence) MFC after: 1 month
* Preparing for upcoming POSIXed putenv() rewrite:ache2007-04-303-5/+5
| | | | don't allow const as putenv() arg, dup it
* Prepare for upcoming POSIXed putenv() rewrite:ache2007-04-302-2/+2
| | | | don't allow putenv() arg be on the stack, use strdup()
* MFP4: Enhancements to pmcstat(8):jkoshy2007-04-274-69/+184
| | | | | | | | | | - Allow the "-t" option to take a regular expression naming command line processes to attach process PMCs to. - Update the manual page and add an example showing the use of the new functionality. - Update the (c) year on the affected source files.
* must byte swap key rsc for big-endian systemssam2007-04-261-0/+1
| | | | | Obtained from: netbsd MFC after: 1 week
* - HT 2.00b added a new flag to the MSI mapping HT capability to indicatejhb2007-04-251-7/+12
| | | | | | | | | | | that the MSI mapping window is fixed at 0xfee00000 and the capability does not include two more dwords used to program the address. Supporting this mostly results in quieting spurious warnings during boot about non-default MSI mapping windows. - HT 2.00b also added a new HT capability type, so support that in pciconf. MFC after: 3 days Tested by: jmg
* 1)Make it possible for rpcbind(8) to bind TCP listening socket to an IPmatteo2007-04-232-236/+181
| | | | | | | | | | | | other than INADDR_ANY. 2) Add the -6 option to specify "IPv6 only". Glanced at by: bms Requested by: bms [2] PR: bin/84494 [1] Approved by: silence from maintainer (~2 weeks) [1] MFC after: 2 weeks
* MFP4: Enhancements and bug-fixes to pmcstat(8):jkoshy2007-04-223-126/+224
| | | | | | | | | | | | | | | | - The '-c' option now takes a comma-separated list of CPU numbers, or a literal '*' denoting all CPUs in the system. Subsequent system PMCs are allocated on the CPUs so specified. Change the default behaviour to allocate system PMCs on all CPUs, not just CPU 0. Update the manual page and add an example of how to use the new functionality. - Attach PMCs to a (commandline) child process more reliably. This fixes a long standing bug in counting events incurred by short-lived processes.
* Correct a sanity check.jkoshy2007-04-211-1/+1
|
* Unbreak rev 1.7's getopt usage. The -f switch does not take an argument.peter2007-04-191-1/+1
| | | | The stray ':' was from the defunct '-g' group arg.
* s/destory/destroy/ (except for the code in contrib/).pjd2007-04-161-1/+1
|
* Fatal error is only when cannot open any of the given exports files.pjd2007-04-131-2/+9
|
* Bump .Dd for r1.5; fix grammatical problem.ceri2007-04-121-2/+2
|
* Specify the correct way to modify this file, and warn that themtm2007-04-121-1/+18
| | | | | | | user should not depend on the internal variables documented in this man page. MFC After: 2 weeks
* There are a couple of bugs in rev. 1.27:mtm2007-04-121-7/+2
| | | | | | | | | | | | | | | | | | | 1) The man page should describe the code, not the other way around. 2) Internal variables should not be documented or exposed, except in controlled circumstances (i.e. - That's what the -C flag is for). The variable should have been saved to the config file in save_config(). 3) The next available userid doesn't get automatically updated. The end-result is the same (user gets added with the correct uid), but in an interactive session the default uid doesn't get updated in the display. So, o Use the uidstart variable instead of uuid (bug #3) o Actually save the variable to adduser.conf (bug #2) o (bug #1 to be fixed in an upcomming commit to adduser.conf.5) MFC After: 2 weeks
* Errm... I don't see how rev. 1.26 could have possibly worked or been tested.mtm2007-04-121-12/+13
| | | | | | | Fix it for real. Submitted by: Johnny Lee <johnny@bmtk.com> MFC After: 2 weeks
* - Fix compilaton with DUMP_FILELOCK_VERBOSE.kuriyama2007-04-121-8/+8
| | | | | - Use consistent "get_lock_matching_unlock" function name in debuglog().
* Considerably rework the ifmcstat utility.bms2007-04-103-115/+385
| | | | | | | | | | | | | | | * Build with or without INET, INET6, or KVM features. * When built without KVM, the sysctl-based getifmaddrs() function is used as the back-end for the utility. * Reflect the fact that FreeBSD now uses the in_multi refcount as a true refcount. * Style. The utility may now be run without super-user privilege, albeit with a less detailed display, equivalent to that of the soon-to-be-retired netstat -g host-mode output. MFC after: 3 weeks
* Remove __P.bms2007-04-091-7/+7
|
* This FFR is no longer needed in sendmail 8.14gshapiro2007-04-091-1/+1
|
* Fix the output of percentage figures, which mistakenly weredds2007-04-071-9/+12
| | | | | | | the corresponding ratios. PR: bin/111329 MFC after: 10 days
* Bump date.pjd2007-04-051-1/+1
|
* Add security.jail.mount_allowed sysctl, which allows to mount andpjd2007-04-051-0/+10
| | | | | | | | | | | | | | | | | | unmount jail-friendly file systems from within a jail. Precisely it grants PRIV_VFS_MOUNT, PRIV_VFS_UNMOUNT and PRIV_VFS_MOUNT_NONUSER privileges for a jailed super-user. It is turned off by default. A jail-friendly file system is a file system which driver registers itself with VFCF_JAIL flag via VFS_SET(9) API. The lsvfs(1) command can be used to see which file systems are jail-friendly ones. There currently no jail-friendly file systems, ZFS will be the first one. In the future we may consider marking file systems like nullfs as jail-friendly. Reviewed by: rwatson
* Update postfix MTA selection code to point at postfix 2.4 which is thesimon2007-04-051-1/+1
| | | | | | current version. MFC after: 3 days
* Add the "-p" option, which allows to specify a port which the daemonmatteo2007-04-032-9/+119
| | | | | | | | should bind to. PR: bin/94920 Reviewed by: alfred@ MFC after: 1 week
* Add the "-p" option, which allows to specify a port which the daemonmatteo2007-04-032-8/+92
| | | | | | | | should bind to. PR: bin/100969 Reviewed by: alfred@ MFC after: 1 week
* - Update for new tcl categoriespav2007-04-031-1/+2
| | | | MFC after: 3 days
* - Recognize -g and -m in pstat(8) too.ru2007-04-032-6/+6
| | | | | | - Document -g and -m support in swapinfo(8). Reviewed by: markm
* Make rpc.statd INET* indipendent by converting sockaddr_in structuresmatteo2007-04-021-6/+18
| | | | | | | | to sockaddr ones and using svc_getrpccaller instead of svc_getcaller. A similar patch was committed to rpc.lockd back in 2002 . PR: bin/42004 MFC after: 1 week
* - Fix typo in ntpd(8).chinsan2007-04-021-1/+1
| | | | | Noticed by: Ben Kaduk (minimarmot _at_ gmail.com) Approved by: delphij@ (mentor)
* Add -m (megabytes) and -g (gigabytes) options. I'm tired of being toldmarkm2007-04-012-4/+20
| | | | | | I can't do this. MFC: 1 month
* Do the right thing with symlinks in the skeleton directory.le2007-03-301-1/+7
| | | | PR: bin/63659
* Accept passwords which contain whitespace.le2007-03-301-1/+1
| | | | PR: bin/53434
* Add home directory creation mode to pw.conf(5) and be a bitle2007-03-306-9/+38
| | | | more specific about the effect of the current umask on -M.
* Add -M argument to usage() output.le2007-03-301-0/+2
|
* The last change is not needed for HEAD.glebius2007-03-301-1/+1
| | | | Explained by: ru
* Deterministically set the default refresh interval to one second.des2007-03-291-1/+1
| | | | | Approved by: phk MFC after: 1 week
* Do not build the libedit support if NO_LIBPTHREAD is defined.glebius2007-03-281-1/+1
| | | | | PR: bin/104478 Submitted by: Mike Durian <durian shadetreesoftware.com>
* net.link.ether.inet.prune_intvl no longer exists.glebius2007-03-281-3/+1
|
* Make consistent with style(msmith). 4 spaces indent, tab for each 2 indents.njl2007-03-284-7/+7
|
* Correct HPET header handling.takawata2007-03-272-3/+3
| | | | MFC after: 7 days
* Introduce the new option -M to allow to set the permissions ofle2007-03-263-8/+31
| | | | | | | | the user's newly created home directory. If omitted, it's derived from the current umask. PR: bin/16880, bin/83253 (partially), bin/104248 MFC in: 1 month
* Check if the new user already exists right after entering thele2007-03-261-2/+8
| | | | username instead of watching the final call to pw(8) fail.
OpenPOWER on IntegriCloud