summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2003-11-06verify libspec fully again (same code as old pkg add-on, mostly).Marc Espie
This ends the current batch of updates. Much thanks to sturm@ for testing and comments.
2003-11-06Split off dependency solving into its own function.Marc Espie
pkg without dependencies is not a special case, it will simply end up with an empty solved dependency list. Try harder to resolve dependencies without resorting to default, use other arguments on the command line first. This makes it possible to have pkg_add * run for the CD even if the CD doesn't contain only default packages as long as the packages satisfy the dependencies.
2003-11-06do not try to run the post-install script on an aborted pkg_add.Marc Espie
2003-11-06split out the registration process, and add a ^C handler, to thatMarc Espie
half-installed packages register in a sensible way.
2003-11-06Handle pkg_add -Marc Espie
let pkg_add postpone conflict handling until it has the real name of the package if necessary, and let PackageLocator deal correctly with a '-' filename.
2003-11-06Allow the use of full paths to refer to installed packages, so thatMarc Espie
pkg_delete /var/db/pkg/zsh-*/ works.
2003-11-06url2pkgname as an explicit functionMarc Espie
2003-11-06Implement discovery of a `packing-list' prefix, e.g., the first @cwdMarc Espie
present in the packing-list (necessary for libdepends checking).
2003-11-06add commented out LoadModule statements for each module we build and installHenning Brauer
and a short description what it does result of a conversation with nick@ and Diana Eichert
2003-11-05Make tcpdump -x work with pfsync.Ryan Thomas McBride
ok dhartmei@
2003-11-04make pkg_create aware of duplicate files in plist, which are a bad thing.Marc Espie
okay sturm@
2003-11-04let pkg_delete use logging facilities to save issues with deleting filesMarc Espie
(mostly md5 problems for now) okay sturm@
2003-11-04Add logging facilities (temp module exposes its temporary directory)Marc Espie
2003-11-04sync docs with current implementation;Jason McIntyre
2003-11-04sort options in SYNOPSIS and sync usage();Jason McIntyre
2003-11-03canonpath strips ending /, rely on unstripped name for @extra.Marc Espie
found out by naddy@
2003-11-03fix logic wrt pkgstems and dependencies.Marc Espie
ok sturm@
2003-11-02- newline before printing first state (so they all line up and the firstRyan Thomas McBride
state doesn't wrap) - No need to print the rule number, that's included in the -v output. ok dhartmei@ canacar@
2003-10-31put pkgpath back in correct order.Marc Espie
automatically append package location specified on the command line to pkgpath (reported by numerous people). okay sturm@
2003-10-31upward compatible change: let md5 register as @md5 (still grok @comment MD5Marc Espie
though), and add @size to denote file sizes in created package. okay naddy@
2003-10-31Fix typo (ouch) and logic order (chown before chmod)Marc Espie
Still a very good idea to mark setXid and special owners in packing-lists (as make update-plist does anyways...)
2003-10-31New libedit api changes.Otto Moerbeek
Tested by djm@, mouring@, jmc@. ok deraadt@
2003-10-31These should build on pegasos.Dale Rahn
2003-10-31need_trigger/idx should be u_int, not ssize_t. millertJun-ichiro itojun Hagino
2003-10-31insufficient length check (possible remote DoS). kame PR 507.Jun-ichiro itojun Hagino
ok deraadt markus mcbride
2003-10-30typo from Tom Cosgrove; this appears to already be fixed in latest httpd;Jason McIntyre
2003-10-30rc.conf(8), not rc.conf(5)Todd C. Miller
2003-10-30double word, from Tom Cosgrove;Jason McIntyre
2003-10-30Another "the the" typo in a comment; Bruno RoheeTodd C. Miller
2003-10-30Fix "the the" typos in comments; Bruno RoheeTodd C. Miller
2003-10-30small update for DGST;Jason McIntyre
2003-10-29security fix from upcoming apache 1.3.29:Henning Brauer
SECURITY: CAN-2003-0542 (cve.mitre.org) Fix buffer overflows in mod_alias and mod_rewrite which occurred if one configured a regular expression with more than 9 captures. [André Malo] ok markus@
2003-10-28let pkg_delete evaluate dependencies earlier: check that all packagesMarc Espie
that the user wants removed are actually a complete set with respect to dependencies. Otherwise, report a list of packages that would have to be removed as well for this pkg_delete to work, and stop right there. okay naddy@
2003-10-28oopsMarc Espie
2003-10-28zapMarc Espie
2003-10-28OpenBSD-specific Makefile. We keep Makefile.PL around for portability toMarc Espie
other OSes. A bit more maintenance, since each module will need to be added, but there are too many fun things that can happen with depend/clean/whatever. Should please that Theo guy who sometimes sends me spam. okay millert@
2003-10-27extra block around do while loop.Marc Espie
perl quick: this is needed for last to work. Found out by sturm@
2003-10-26correct bad dprintf, from Moritz Jodeit <moritz at jodeit.org>Anil Madhavapeddy
2003-10-26update for crl and crl2pkcs7;Jason McIntyre
2003-10-26cosmetic change, people read preadd as p_read_d, so make it explicit:Marc Espie
preadd -> pre_add reallyadd -> really_add
2003-10-26Partial synch with reality, ok sturm.Marc Espie
2003-10-24fix an occasional hang noticed by mpech@ when a SIGHUPCan Erkin Acar
is received after the configuration is modified. tested by mpech@, ok avsm@
2003-10-24dont compare int to NULL, millert@ okAnil Madhavapeddy
2003-10-24initgroups() before chroot(), found by Daniel LucqHenning Brauer
ok deraadt@
2003-10-24small update for CIPHERS;Jason McIntyre
2003-10-23Allows close() on already closed locator.Marc Espie
Fix second problem seen by krw@
2003-10-23Typo. Fix removal for multiple times the same dependency.Marc Espie
2003-10-23typos from Jared Yanovich, plus a few more independant -> independent;Jason McIntyre
2003-10-23missing space in DEINSTALL message.Marc Espie
allow pkg_delete stem to work, unless ambiguous. put all pkg_info's work into a single function, so that pkg_info autoconf will work. ok fries@ sturm@
2003-10-22setgroups; avsm okTheo de Raadt