summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* remove WARNS=2: we're not ready for it yet.matteo2007-03-231-1/+0
|
* Make sysinstall's code WARNS=2 clean .matteo2007-03-233-2/+5
| | | | MFC after: 1 week
* Catch up with ACPI-CA 20070320 import.jkim2007-03-224-40/+39
|
* Use -M and -N for core and kernel image respectively.bms2007-03-202-10/+20
|
* Make clean for !INET6.bms2007-03-192-182/+41
| | | | | Remove non-FreeBSD code. Sort includes.
* Merge latest ifmcstat (with changes for FreeBSD).bms2007-03-192-34/+477
| | | | | | | | | | | Possibly merge or split with netstat -g. TODO: Make !defined(INET6) clean. TODO: Add -M/-N instead of -k. TODO: Use sysctls instead of kvm. Obtained from: KAME MFC after: 2 weeks
* One more s/ethernet/Ethernet/ I missed in the previous revision.brueffer2007-03-191-1/+1
|
* Improve previous commit by using setusercontext(3) and removing the grouptrhodes2007-03-192-45/+24
| | | | | | option. Bump doc date for manual page changes. Reviewed by: rwatson, ru, will (older version)
* Update postfix MTA selection code to point at postfix 2.3 which is thesimon2007-03-171-1/+1
| | | | | | | | current version. PR: misc/110447 Submitted by: Chris Fletcher <fletch.AT.brightsparks.net.au> MFC after: 1 week
* - Add cxgb(4) entry, remove stale wx(4) entrybrueffer2007-03-161-39/+39
| | | | | | | - (gigabit|fast) ethernet -> (Gigabit|Fast) Ethernet Approved by: rwatson (mentor) MFC after: 3 days
* Imagine a situation where:pjd2007-03-161-4/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # ls -ld /mnt/{foo,bar} drwxr-xr-x 3 root wheel 512 Mar 16 06:56 /mnt/bar lrwxr-xr-x 1 root wheel 3 Mar 16 12:10 /mnt/foo -> bar # grep /mnt/foo /etc/fstab /dev/da1 /mnt/foo ufs rw 0 0 Which means, we give symbolic link as a mount point to mount(8), but mount(8) use realpath(3) before mounting the file systems, so we get: # mount | grep /dev/da1 /dev/da1 on /mnt/bar (ufs, local) Before the commit: # snapinfo /mnt/foo usage: snapinfo [-v] -a snapinfo [-v] mountpoint # snapinfo /mnt/bar /mnt/bar/snap This commit makes snapinfo(8) to first realpath(3) the given mount point and now we have: # snapinfo /mnt/foo /mnt/bar/snap # snapinfo /mnt/bar /mnt/bar/snap
* Pass special device to the ufs_disk_fillout() function, instead of mountpjd2007-03-161-12/+9
| | | | | | point path. This way we properly handle the case when file system listed in /etc/fstab was unmounted and another file system was mounted on the same mount point.
* In auth_script(), change the size of an array to match the number ofkevlo2007-03-151-1/+1
| | | | arguments.
* fix include nameskmacy2007-03-151-2/+2
|
* Document exact command preferred for sending ASL as part of bug reports.njl2007-03-142-0/+8
|
* Add administration and debugging tool for Chelsio T3 10 Gigabit Ethernet driverkmacy2007-03-146-0/+8186
|
* Add dynamic acceleration to moused(8). This introduces a '-A' flag to controlphilip2007-03-113-8/+116
| | | | | | | | | the acceleration algorithm. It can be used together with the '-a' flag for regular acceleration. PR: bin/110003 Submitted by: Oliver Fromme <olli -at- lurza.secnetix.de> MFC after: 1 week
* Don't try to apply connection-per-ip rate limiting to unix domaindwmalone2007-03-111-0/+1
| | | | | | | | | | sockets. Instead of rejecting all unix domain connections when the -C flag is given, allow them instead. Aragon tested an earlier version of the patch. PR: 109315 MFC after: 2 weeks Tested-by: Aragon Gouveia <aragon@phat.za.net>
* ! is a generic info messagexride2007-03-091-0/+1
| | | | | | Reviewed by: harti Approved by: harti MFC after: 2 weeks
* Initialize *pfh to NULL to quiet a gcc warning, not part of my originaltrhodes2007-03-091-1/+1
| | | | commit because it was not part of the new code.
* Add support for dropping privileges to a specified user and/or group.trhodes2007-03-092-5/+56
| | | | | | PR: 108523 Submitted by: Dmitri Alenitchev <dmitri@dworlds.ru> (original version) Reviewed by: mpp (first reply to PR)
* Reduce WARNS count due to alignment warning on ia64.bms2007-03-091-1/+0
|
* Merge a slightly cleaner and SSM capable mtest(8).bms2007-03-083-202/+445
| | | | | Submitted by: Wilbert De Graaf MFC after: 1 month
* Fix a bug where HOME was not allowed to be overridden by an user's crontabwill2007-03-081-8/+10
| | | | | | | | as crontab(5) states it can be. This is supported by all vixie-cron derived implementations; not sure why FreeBSD was any different. PR: bin/106442 MFC after: 2 weeks
* Use setresuid for simple privilege dropping.kevlo2007-03-081-2/+6
|
* Invoke tar(1) with the -p option when installing a packageru2007-03-061-2/+2
| | | | | | | | | from an URL (i.e., do it the same way as when installing from a file). This fixes the lossage of the setuid bits. It wasn't a problem before because GNU tar(1) implied the -p option for root, but BSD tar(1) doesn't do that. Discussed with: tobez and some advanced users :)
* Use sizeof() for calculating the buffer size instead of hard-coded values.kevlo2007-03-068-9/+9
|
* The use of predefined strings such as \*[Ge] can be harmful here,ru2007-03-041-3/+3
| | | | | as some fonts (e.g., KOI8-R) have special symbols for displaying them, and we want symbols ">=" literally here.
* Fix markup and clean up some of the wording.ru2007-03-041-23/+32
| | | | | | (This English was hard to translate as it uses a language that is far from a pure technical. It would definitely benefit from a revision.)
* Fix problems resulting from SMP kernels (mis-)identifying themselves ascperciva2007-03-041-3/+20
| | | | | | | | | "SMP-GENERIC" (i386) or "GENERIC" (amd64). FreeBSD 6.2 Errata candidate. MFC after: 3 days Pointy hat to: cperciva
* Clarify the meaning information printed by the -o option.grog2007-03-031-4/+3
| | | | Clean up grammar, adding articles.
* Check the return value from rad_cvt_ipv6prefix().ume2007-03-011-1/+7
| | | | | PR: bin/89808 MFC after: 1 week
* Increase helpfulness in diagnostic message - ypbind running without -ypset orjmallett2007-02-281-1/+1
| | | | | -ypsetme will prevent use of ypset. Remind the user to check that it was started correctly.
* Fix a nit noticed during translation.ru2007-02-281-0/+2
|
* Use the RB_AUTOBOOT define over 0.ceri2007-02-231-1/+1
| | | | Approved by: ru (mentor)
* Check that the length of the received message is at least as big as a PDUemax2007-02-231-1/+2
| | | | | | | before we use pdu->len. Submitted by: Iain Hibbert MFC after: 3 days
* If floppies are used to boot the machine, the user lets the machinekensmith2007-02-221-1/+6
| | | | | | | | | | | | | | complete the boot and enter into sysinstall, and only then inserts a CD into the CDROM drive and tries to select that as the install media the first call to mount(2) generates EIO but the second call to mount(2) will succeed. This was 100% reproducible on 6.2-RELEASE, RELENG_6, and HEAD. If the user inserts the disc into the CDROM while the machine is booting off the floppies the first call to mount(2) succeeds with no problems. The problem was originally reported in PR #56952 against 5.1-CURRENT so it's been there for a while now. PR: bin/56952 MFC after: 2 weeks
* Bring these files up-to-date.ceri2007-02-182-27/+29
| | | | PR: docs/108536
OpenPOWER on IntegriCloud