summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* When pointing users at mount_devfs to populate the /dev of a jail,rwatson2003-06-261-0/+10
| | | | | | | tell them that they also need to use devfs rules to prevent inappropriate devices from appearing in the jail; add an Xref. In earlier versions of this man page, the user was instructed to use sh MAKEDEV jail, which only created a minimal set of device nodes.
* Unbreak this for alpha and friends.smkelly2003-06-261-2/+2
| | | | Double pointy hat to me, or something.
* o Fix typo.maxim2003-06-261-2/+2
| | | | Submitted by: smkelly
* - Add a software watchdog facility.smkelly2003-06-264-0/+338
| | | | | | | | | 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)
* Temporarily re-remove the bluetooth tools..julian2003-06-241-2/+0
| | | | | | there are problems with their Makefiles I wasn't aware of.. Pointed out by: ru@
* Account for the fact that "buildworld" builds in the 'obj' treejulian2003-06-241-1/+1
| | | | Pointed out by: Andrew Gallatin <gallatin@cs.duke.edu>
* Typo.mtm2003-06-241-1/+1
| | | | | | This has worked so far because the variable was empty by default. Submitted by: Kostyuk Oleg <cub@cub.org.ua>
* Connect bluetooth tools for i386 only.julian2003-06-241-0/+2
| | | | | | | These are probably machine independent, but there is no way for the developers to test them other than on x86. They will become MD as testing becomes possible.
* Remove world read bit from the ppp binary; we don't do world-execute,rwatson2003-06-231-2/+2
| | | | | | | so it was inconsistent (although probably not harmful) to have world-read. Submitted by: Socketd <db@traceroute.dk>
* Delete keyadmin: its functionality is now provided by setkey(8).ru2003-06-234-1528/+0
|
* Delete prefix: its functionality has been merged into ifconfig.tjr2003-06-233-159/+0
|
* Delete gifconfig: its functionality has been merged into ifconfig.tjr2003-06-233-1111/+0
|
* - Set close on exec flag for device file descriptors.mdodd2003-06-221-0/+11
| | | | | | | - Reset signal handlers in event_cmd_exec_act(). PR: i386/35182 Submitted by: Daniel O'Connor <darius@dons.net.au>
* - Don't ignore SIGTERM.mdodd2003-06-222-4/+20
| | | | | | | | - Add a command line switch to trigger POWERSTATECHANGE actions on un-reported power state changes. PR: i386/32251 Submitted by: Walter C. Pelissero <walter@pelissero.org>
* Though manpage says that 0.0.0.0 can be used as HISADDR for gwume2003-06-211-2/+4
| | | | | | | in Framed-Route, it didn't work. Since ncprange_aton() treats 0.0.0.0 and :: as prefixlen=0, we need to care the case. MFC after: 1 week
* We don't need two $FreeBSD$'s. Remove the older one.gad2003-06-211-2/+0
|
* make pciconf understand it's own output as stated in the manpage.jmg2003-06-201-5/+13
| | | | | | | | pciconf -r none8@pci1:12:2: 0x0 now works. PR: bin/10312 Submitted by: Castor Fu
* s/warn/info/mtm2003-06-201-1/+1
|
* Add support for the special shell nologin.mtm2003-06-202-5/+44
| | | | Prodded by: mikeh
* Mention the use of Framed-IPv6-Prefix.ume2003-06-201-0/+4
| | | | MFC after: 1 week
* Update my email address.mtm2003-06-202-2/+2
|
* Don't forget the -r on the second password prompt.mtm2003-06-201-1/+1
| | | | PR: bin/53550
* IPV6PREFIX is set when Framed-IPv6-Prefix is defined, You mayume2003-06-203-0/+65
| | | | | | | want to pass the value to upper layer protocol such as DHCPv6 for prefix delegation. MFC after: 1 week
* Mention the use of Framed-IPv6-Route.ume2003-06-201-0/+46
| | | | MFC after: 1 week
* Remove dev_mkdb(8). The kernel answers these questions.phk2003-06-204-267/+0
|
* fix problem with uninitalized ptr (from PR)jmg2003-06-201-8/+13
| | | | | | | other minor clean up. PR: bin/2785 Submitted by: mpp
* Fix a coredump that would occur when fdopen was unable tosilby2003-06-191-1/+2
| | | | | | | | return a valid fd. PR: 49096 Submitted by: demon MFC after: 3 days
* Do RADIUS accounting on IPV6CP.ume2003-06-195-18/+110
| | | | MFC after: 1 week
* Oops, I put unused variable in my previous commit.ume2003-06-191-1/+0
| | | | MFC after: 1 week
* Install routes specified by Framed-IPv6-Route. Since the formatume2003-06-193-1/+71
| | | | | | of Framed-IPv6-Route is user defined, it follows Framed-IP-route. MFC after: 1 week
* Xref police: ntp.conf(8) -> ntp.conf(5).sobomax2003-06-171-1/+1
|
* Not particularly pretty hack to generate rules to make .ln filesmarkm2003-06-161-2/+10
| | | | | | | from .c files. Actually, this is overkill, as the .ln file targets are assumed from .? (any) files. This is not a problem in practice, merely a bit untidy, as the linting rules DTRT. See the sys/conf/* and sys/mk/* files for usage.
* MYADDR6 in ppp.link{up,down} should match even when IPCP is enabled.ume2003-06-161-24/+20
| | | | MFC after: 1 week
* o BATTTIME and BATTPERCENT are 'int' not 'str'.maxim2003-06-161-1/+1
| | | | | | PR: bin/48793 Submitted by: Stefan Farfeleder <stefan@fafoe.dyndns.org> MFC after: 2 week
* Fix yppasswdproc_update_master_1_svc() too.mbr2003-06-151-0/+32
| | | | | | | | | | Only call pw_mkdb if passfile == _PATH_MASTERPASSWD. Otherwise, rename master.passwd to a temp filename, rename the new passwd to master.passwd, and let yppwupdate update passwd as it sees fit. Reviewed by: phk Tested by: genesys
* Only call pw_mkdb if passfile == _PATH_MASTERPASSWD.mbr2003-06-151-9/+47
| | | | | | | | | | Otherwise, rename master.passwd to a temp filename, rename the new passwd to master.passwd, and let yppwupdate update passwd as it sees fit. PR: 52601, 7968 Reviewed by: des Submitted by: Dan Nelson <dnelson@allantgroup.com>
* Document changes to default output.grog2003-06-151-6/+7
|
* Print out the current recording devices in the default printout.grog2003-06-151-3/+9
| | | | | | | | Discussed with: cg Break some particularly long lines. Still not enough for: bde.
* make rarpd use in_addr_t instead of u_long since this is neccessaryjmg2003-06-151-24/+24
| | | | | | on 64bit platforms ok'd by: silence
* Remove MAINTAINER= lines in the makefiles for camcontrol, iostat, libcamken2003-06-141-2/+0
| | | | | | | | and libdevstat, since the new way of doing things is to just list maintainership in src/MAINTAINERS. Also, remove duplicate entries in src/MAINTAINERS for those utilities. I already had entries for them.
* Eliminated two dozens of superfluous cats and two r-cats (sorry, Jordan).ru2003-06-131-73/+51
| | | | Suggested by: Dan Nelson
* Check the return values of opendir() and unlink() in cleanheaders().tmm2003-06-121-2/+4
| | | | If unlink() fails, just print a warning for now.
* Add missing header for system_Select() prototypekris2003-06-121-0/+1
|
* Minor improvement to some debugging code that is probably used by no onegad2003-06-121-4/+15
| | | | | | but me (it's usually #ifdef-ed out). MFC after: 1 week
* Remove MAINTAINER= lines. That info is now in /usr/src/MAINTAINERSgad2003-06-121-3/+0
|
* When sanity-checking a variable, it's good to check the correct variable...gad2003-06-121-1/+1
| | | | MFC after: 1 week
* Remove uneeded cast.obrien2003-06-111-1/+1
|
* This appears to be WARNS=3 safe.obrien2003-06-111-0/+2
|
* Best we can do is WARNS=1 due to lex.obrien2003-06-111-0/+1
|
* Do not refer to the non-existant BDECFLAGS.obrien2003-06-112-3/+0
|
OpenPOWER on IntegriCloud