summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Install manpages into machine-specific (i386) subdir.ru2001-02-193-0/+3
|
* Improve pkg_delete(1) behaviour when deleting several packages at once.sobomax2001-02-191-3/+74
| | | | | | | | | | Instead of trying to delete packages in the same order as they were specified in the command line, reorder deletion in such a way that if package A depends on package B then package A will be deleted before B no matter in which order they were specified in the command line. Reviewed by: jkh, will Approved by: jkh
* There is an arbitrary file size limit in ctm of 20MB. By my reckoning,mckay2001-02-191-1/+1
| | | | | | ports/INDEX,v is currently 19.97MB and will blow this limit on the next update. Let's try doubling the limit again, to give us time to get around to removing the limit altogether.
* ${BDECFLAGS} work. And fix a real error in the process. A "MAXUSERS"peter2001-02-197-21/+21
| | | | | string could have been passed to free(); There are some warnings here I am not sure how to fix as they are in the lex scanner code, etc.
* Devices are NOT compiled with the "special c2 option -i"..peter2001-02-181-3/+0
|
* Switch to using a struct xucred instead of a struct xucred when notgreen2001-02-182-13/+13
| | | | | | | | | | | | | | | | | actually in the kernel. This structure is a different size than what is currently in -CURRENT, but should hopefully be the last time any application breakage is caused there. As soon as any major inconveniences are removed, the definition of the in-kernel struct ucred should be conditionalized upon defined(_KERNEL). This also changes struct export_args to remove dependency on the constantly-changing struct ucred, as well as limiting the bounds of the size fields to the correct size. This means: a) mountd and friends won't break all the time, b) mountd and friends won't crash the kernel all the time if they don't know what they're doing wrt actual struct export_args layout. Reviewed by: bde
* Preceed/preceeding are not english words. Use precede and preceding.asmodai2001-02-181-1/+2
| | | | Add $FreeBSD$.
* Preceed/preceeding are not english words. Use precede and preceding.asmodai2001-02-182-3/+3
|
* MFS: getpackagesite() from RELENG_4 that allows the code to be the same.obrien2001-02-171-4/+16
|
* Remove old DNS setup document. We have long past the times whereasmodai2001-02-171-1/+1
| | | | BIND 4 was the thing of the day.
* mdoc(7) police: sanitize previous commit.ru2001-02-161-2/+3
|
* Don't even look at af_family if accept() returns sa->sa_len == 0brian2001-02-131-0/+4
|
* mdoc(7) police: use the default ``file ...'' feature of the .Ar macro.ru2001-02-131-1/+1
|
* In light of the dismal transfer times from ftp.FreeBSD.org, add a newobrien2001-02-132-10/+36
| | | | | | | | `PACKAGEROOT' env var which you would set to a proper mirror of ftp.FreeBSD.org (say "export PACKAGEROOT=ftp://ftp3.FreeBSD.org"), to fetch from an alternate place. This is easier to use than `PACKAGESITE' for true mirrors, and can be used in your dot files across all versions of FreeBSD.
* A better fix for the PacketAliasProxyRule() call.brian2001-02-101-3/+3
| | | | Submitted by: Ian Dowse <iedowse@maths.tcd.ie>
* Prevent the commands output of pkg_version.pl from being executed without thebmah2001-02-091-0/+14
| | | | | | | | | | user actually editing the output. Too many people were rampantly abusing this feature via "pkg_version -c | sh" without really being cognizant of the dangers involved (ports upgrade kits) or the fact that it just plain wasn't designed for it (dependencies). We'll try to keep people from shooting themselves in the foot. Will be MFC-ed to RELENG_4 and RELENG_3 after cooling-off period.
* Teach sysinstall about the `compat4x' distribution.murray2001-02-096-6/+33
| | | | Approved by: jkh
* mdoc(7) police: cosmetics.ru2001-02-091-8/+9
|
* - By default treat supplied arguments as a shell globs to be matched againstsobomax2001-02-084-41/+191
| | | | | | | | | | | | | | | | | | | names of installed packages; - add new `-G' option to disable glob matching and revert to previous behaviour (I have no idea why this could be necessary, though); - add a new `-x' option, which instructs pkg_info(1) to treat supplied arguments as a regular expressions. For example: $ pkg_info foo\* - displays information about all packages whose names start from foo $ pkg_info -G foo\*-1.1 - displays information about package named "foo*-1.1" $ pkg_info -x ^foo.\* - displays information about all packages whose names start from foo Original idea submitted by: Edwin Groothuis <mavetju@chello.nl> (bin/24695) Reviewed by: jkh, roam Approved by: jkh
* mdoc(7) police: replace two -unfilled displays with -tag lists.ru2001-02-072-8/+8
| | | | | | This works only because of bugs in current implementation: the first .It after ``.Bd -unfilled'' re-enables filling mode and does not restore (disable) it back afterwards.
* mdoc(7) police: Change -filled displays (which just happenru2001-02-0711-40/+24
| | | | | | to be the same as -ragged in the current implementation) to -ragged. With mdocNG, -filled displays produce the correct output, formatted and justified to both margins.
* Bump the i386 default root by another 30MB to 100MB total. The Alphaobrien2001-02-072-4/+4
| | | | | | default root bumps 20MB to 110MB. Requested by: kris
* Add 20MB to the default / size for this in-development branch.obrien2001-02-072-4/+4
|
* mdoc(7) police: removed leading (non-sense) .Ns call.ru2001-02-061-1/+1
|
* Fix typo: compatability -> compatibility.asmodai2001-02-062-2/+2
| | | | Compatability is not an existing english word.
* Fix typo: seperate -> separate.asmodai2001-02-068-9/+9
| | | | Seperate does not exist in the english language.
* Convert if_multiaddrs from LIST to TAILQ so that it can be traversedphk2001-02-061-3/+3
| | | | | | backwards in the three drivers which want to do that. Reviewed by: mikeh
* Add package signing utilities; somebody might actually want them.wes2001-02-0617-0/+2514
| | | | | | | | | These are not enabled in the pkg_install Makefile as of yet; adding the "sign" directory to the SUBDIR list will enable building of sign. Submitted by: Wes Peters Obtained from: Original framework from OpenBSD 2.7, X.509 bits from DoBox.
* mdoc(7) police: modifiers should be marked with .Cm, not .Ar.ru2001-02-051-14/+19
|
* Make the ``arp -d hostname proxy'' really do something useful.ru2001-02-051-2/+2
| | | | | | Specifically, ``proxy'' modifier tells the code to delete only Proxy ARP entry for the ``hostname''; the usual ARP entry will be unaffected by this operation.
* -pedantic mode:sobomax2001-02-052-1/+3
| | | | | - Add a missed prototype for the recently added show_cksum() function; - put in "explicit braces to avoid ambitious else" suggested by gcc(1).
* Add a ``Usable'' function to the ccp switch. The functionbrian2001-02-045-2/+35
| | | | | | | | | | | | | is called prior to sending a CCP configure request for a given protocol. The default is to send the request, but this is overridden for MPPE which checks to see if the lcp negotiations agreed CHAP81, and if not fails. Use the same function to decide if we should reject peer requests for MPPE. This should get rid of those boring messages about not being able to initialise MPPE when we don't negotiate CHAP81.
* This seems to stop syslog console messages looping. The problemdwmalone2001-02-041-1/+1
| | | | | | is that LOG_FAC doesn't do quite what you think it does. PR: 24704
* Remove the need to list each and every cpu platform. Config will nowpeter2001-02-044-55/+10
| | | | take your word for the 'machine' switch.
* MPPE_MasterKeyValid is only there if HAVE_DES is defined.brian2001-02-041-0/+2
|
* Don't send an authentication failure response if we fail sendingbrian2001-02-041-13/+26
| | | | a radius accounting packet.
* Make the MPPE MasterKey Invalid messages a bit clearer (it nowbrian2001-02-042-4/+6
| | | | | | complains that you can't do MPPE without CHAP81). Reset MasterKeyValid to zero when we hit phase DEAD.
* Untangle some cunfusion between the CLOSE_STAYDOWN, CLOSE_LCP andbrian2001-02-043-18/+21
| | | | | | | | CLOSE_NORMAL meanings. CLOSE_NORMAL doesn't change the currently required state, the others do. This should stop ppp from entering DATALINK_READY when LCP shutdown doesn't end up happening cleanly. Bump our version number to reflect this change.
* Add a -g flag for verifying an installed package against its recordedjkh2001-02-035-2/+41
| | | | | | | | checksums (to see if it's been modified post-installation). Naturally, this mechanism is only as secure as the contents of /var/db/pkg if you're using it for auditing purposes. Submitted by: Roman Shterenzon <roman@xpert.com>
* Move wicontrol from i386 to MI section. (yes, it compiles on alpha, wherepeter2001-02-031-1/+1
| | | | | theoretically NEWCARD might work one day). if_wi.c is in the MI config section already.
* Try to kldload if_tun if we get ENOENT from opening /dev/tunN -brian2001-02-021-1/+1
| | | | | | | not just if we get ENXIO. This makes ppp work with DEVFS when if_tun isn't built into the kernel (without needing to manually kldload it).
* Revert previous checkin ("proxy" is required in some instances).archie2001-02-012-2/+7
| | | | Add a note to that effect to the man page.
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-0156-406/+463
|
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-012-4/+5
|
* Try and make it clearer that the static units thing is a FYI only.peter2001-01-311-1/+1
|
* Unwind a bit more cruft - we only have one type of device now.peter2001-01-314-14/+6
|
* Oops. An old version of a local change leaked in with the last commit.peter2001-01-311-22/+9
| | | | Since it is here, clean it up a bit.
* Redo the stray header file cleanup code to not depend on timestampspeter2001-01-314-28/+54
| | | | | or access times or anything. Just bite the bullet and keep a list of header files that we know about.
* Fix documentation: "proxy" is not a keyword for the arp(8) command line.archie2001-01-312-2/+1
|
* Make vnconfig annoy users for 15 seconds to make them switch to mdconfig.phk2001-01-302-0/+12
|
OpenPOWER on IntegriCloud