summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Use includes to get prototypes for hints and env arrays.peter2001-09-171-0/+8
| | | | Submitted by: bde
* Fix segfault introduced in previous commit (when adding local packages).sobomax2001-09-171-2/+3
|
* Fix the bootstrapping aid from revision 1.9.ru2001-09-171-1/+1
| | | | WORLD was renamed to BOOTSTRAPPING.
* Fix so that lpc's interactive-mode will not be confused by EditLine processinggad2001-09-171-0/+9
| | | | | | | into thinking that there is a print-queue called 'xterm'... Reviewed by: short discussion on freebsd-stable MFC after: 1 week
* Rework the RTSOL logic from previous patch (it was wrong)jkh2001-09-151-4/+15
| | | | | PR: 26187 && 24136 Submitted by: Glenn Trewitt <trewitt@trewitt.org>
* Add missing {}. This made most/all scripted installs fail.phk2001-09-142-2/+4
| | | | Approved by: jkh
* Set BINOWN=root explicitly for setuid root binaries.ru2001-09-141-0/+1
|
* Increase disk space estimate for installing the ports collection frommurray2001-09-141-1/+1
| | | | | | 70MB to 100MB. Submitted by: rpratt
* Whitespace change only. Use the same indention level throughout thismurray2001-09-142-22/+24
| | | | | | file and add a blank line after variable declarations. Submitted by: jhb
* Clean up, WARNSify, unbreak -v option handling.ru2001-09-132-52/+52
|
* sigpause() -> sigsuspend()brian2001-09-132-8/+15
| | | | sigblock() -> sigprocmask()
* Correct alignment issuesbrian2001-09-131-17/+20
| | | | Obtained from: OpenBSD
* Add a strcasecmp() call I forgot in my hurry to commit the previous fix.des2001-09-131-1/+2
| | | | | | | Without this call, the hostname check would in some cases yield false positives. Pointed out by: ru
* Spell syslog.conf correctlybrian2001-09-131-1/+1
| | | | | Submitted by: Tony Finch <dot@dotat.at> PR: 30545
* Don't override BINGRP -- this binary is not ``setgid bin''.ru2001-09-131-1/+0
| | | | | PR: bin/30538 Submitted by: Tony Finch <dot@dotat.at>
* The previous commit appeared to just shove the bug under the carpet ratherdes2001-09-131-5/+23
| | | | | | | | | | than really solve it. This approach (inspired by Ruslan's patch) solves the real problem by stripping the local domain off the host name in the config line structure. Also mark a bunch of code sections that either do not check the return value of a strdup(), malloc() or calloc() call, or do not properly handle a NULL return.
* Set BINOWN=root explicitly for setuid root binaries.ru2001-09-138-0/+8
| | | | | | This is not "useless", as one may have non-default setting for BINOWN in make.conf, and we still want these to be installed setuid root in this case.
* Fix logging from remote hosts, which has been broken since (at least) revisiondes2001-09-131-2/+3
| | | | | | | | 1.64, i.e. July of last year. Also fix a minor style bug in the same code. PR: bin/28634 Pointy hat to: dwmalone Pointed out by: my buggy DSL router's remote logging facility
* Return the *right* error codes for yes/no questions when non-interactive.jkh2001-09-112-8/+8
| | | | Submitted by: Alan Judge <Alan.Judge@eircom.net>
* If a sentence starts inside parenthesis, it should end insidedd2001-09-111-1/+1
| | | | parenthesis.
* mdoc(7) police: Fixed the .Ex calls in manpages that describe moreru2001-09-111-2/+2
| | | | | | | than one utility. PR: docs/30437 Submitted by: SUZUKI Koichi <koich@cac.co.jp>
* Use getprogname(3) instead of hardcoding the name..sos2001-09-111-2/+2
|
* Fixes from Ruslan Ermilov:sos2001-09-112-41/+30
| | | | | | | | | | | | | 1. FreeBSD should be spelled with "F" and "BSD" in capitals, even in comments. 2. Please don't use hard sentence breaks. Always start a new sentence from the new line. 3. Don't use `#' or `$' in EXAMPLES; this has been fixed recently in share/examples/mdoc/ templates. 4. Nuke the prog_name variable burncd.c, use getprogname(3).
* mdoc(7) police: use standard list width.ru2001-09-111-2/+1
|
* mdoc(7) police: fix markup.ru2001-09-111-131/+168
|
* Use a colon to separate the user and group when executing chown(1).dd2001-09-111-2/+2
| | | | | | | Periods aren't supported anymore. PR: 30507 Submitted by: Georg-W. Koltermann <gwk@sgi.com>
* Fixed the free(3) panic overlooked due to the -Wno-uninitialized.ru2001-09-111-1/+2
|
* Add kldxref(8), for maintaining the linker.hints file for translatingpeter2001-09-117-0/+838
| | | | | | module->pathname.ko. It supports only ELF for now. Submitted by: bp (with some minor tweaks)
* Add DAO mode (Disk At Once).sos2001-09-102-79/+304
| | | | See burncd.8 for how to use it.
* mdoc(7) police: markup nits.ru2001-09-101-2/+2
| | | | | PR: docs/30473 Submitted by: Jonathan Hanna <jhanna@home.com>
* Add support for monitor mode. This means that after enabling thebrooks2001-09-102-5/+36
| | | | | | | | correct mode via ancontrol, you can use bpf to sniff raw 802.11 frames. Who want's to port AirSnort. ;-) Submitted by: Doug Ambrisko <ambrisko@ambrisko.com> (author) David Wolfskill <david@catwhisker.org> (port to current)
* Automatically load the "snp" module if it isn't already present.dd2001-09-091-0/+6
|
* Use CFLAGS instead of COPTS.dd2001-09-091-1/+1
|
* - Silence warnings: apply `const' generously, mark some variablesdd2001-09-092-45/+50
| | | | | | | | | | | | | | | __unused, and change local variables named `sin' (struct sockaddr_in) to `sin4'. (`sin' conflicts with the definition of sin(3), which gcc assumes to be defined even if math.h isn't included (it's a builtin). This is probably a bug in gcc.) - Apply WARNS=1. WARNS=2 was not used because this program assigns string literals to (struct iovec).iov_base for writing, and the only clean way to silence -Wwrite-strings in that case would be to strdup() and consequently free() those literals, which I considered too disruptive. Reviewed by: bde (partially)
* Fixes problem with pkg_add -r when adding multiple pkgs.unfurl2001-09-071-0/+1
| | | | Reviewed by: chris
* Strip non version _number_ bits from HOST_OS_VERSION.obrien2001-09-061-1/+1
| | | | Requested by: knu
* I was missing the HOST_OS_VERSION setting in the fall-back case.obrien2001-09-062-3/+6
| | | | | Also, the script was too position dependant. We now have make(1) pass in the file to grub around in to get our settings from.
* Print the correct filename if we fail to open $etc_passwd.dd2001-09-061-1/+1
| | | | Submitted by: Brian Poole <raj@cerias.purdue.edu>
* sysinstall's primitive network configuration expects only one valuemurray2001-09-061-0/+2
| | | | | | | | | | for each option in the DHCP lease file. The DHCP lease parsing code specifically ignores more than the first nameserver, but it didn't previously deal with the case of more than one router. This caused segfaults and a painful death when installing on a network with multiple routers. PR: misc/16003
* There is a problem in this example script. Setting ftp=time.cdrom.commurray2001-09-061-1/+1
| | | | | | | is useless, we should set _ftpPath=blah. PR: misc/29587 Submitted by: David Yeske <dyeske@yahoo.com>
* If we're running as init, install a signal handler for SIGCHLD.murray2001-09-062-0/+26
| | | | | PR: bin/14729 Submitted by: jhb
* Make wicontrol WARNS=2 clean. This is mostly just adding const to things.brooks2001-09-052-24/+35
|
* Use CFLAGS, not COPTS, in the Makefile. bsd.prog.mk conveniently addsdd2001-09-051-2/+2
| | | | | | | | | COPTS towards the end of final CFLAGS so that it can be used to override Makefile and other defaults. Using it in Makefiles risks having options set using it clobbered when somebody uses it on the command line. Approved by: bde
* Don't mention wtmp.[0-7] in the FILES section. This manual pagedd2001-09-051-3/+1
| | | | | | | | | doesn't talk about these files elsewhere, doesn't use the files by default, and the names are dependent on site-specific newsyslog configuration. PR: 30348 Submitted by: Giorgos Keramidas <charon@labs.gr>
* Correct a typo.dd2001-09-051-1/+1
| | | | | PR: 30347 Submitted by: Giorgos Keramidas <charon@labs.gr>
* Fix typo.dd2001-09-051-1/+1
| | | | | PR: 30342 Submitted by: Giorgos Keramidas <charon@labs.gr>
* atol -> strtoll, for file offsetache2001-09-051-1/+1
|
* Try to determine the OS version and architecture for what is being builtobrien2001-09-052-9/+19
| | | | | | vs. the building machine. PR: 14040
* 4000 -> 5800 ports. We really need to add some smarts to themurray2001-09-051-1/+1
| | | | | ports/INDEX creation script to update #defines in header files and entities in the doc/ tree.
* Allow network device name to be given on the command line in themurray2001-09-051-1/+1
| | | | | | | | | | | | | interactive case. This already works for non-interactive installs, but at least one user thinks it would be useful and it certainly seems more correct to allow it here as well. So, this will now work : # sysinstall netDev=fxp0 tcpMenuSelect PR: bin/30229 Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
OpenPOWER on IntegriCloud