summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2011-07-21Adjust work directory name.Antoine Jacoutot
2011-07-20small tidbitsMarc Espie
2011-07-20Fix reporting of permanent/temporary failures for MX lookups.Eric Faurot
Simplify code a bit while there. ok gilles@
2011-07-19better textMarc Espie
2011-07-19tag fuzzy stuff for manual-installs tooMarc Espie
2011-07-19mostly doneMarc Espie
2011-07-19use common code for ssh/http 1.1Marc Espie
2011-07-19clean-up a few thingsMarc Espie
2011-07-19Re-add the test which is needed in the case where the session failsEric Faurot
early (in MX or SECRET) and the data file is not yet opened. ok gilles@
2011-07-19fix retry delay calculationEric Faurot
ok gilles@
2011-07-19fix -Ddependencies, from Nathanael RensenMarc Espie
2011-07-18Sync user(8) SYNOPSIS to useradd(8) and userinfo(8)Ingo Schwarze
as suggested by Glen Anderson <g dot s dot anderson at gmail dot com>; while here, add a few missing "[,group,...]", do not lump punctuation into .Ar, and drop useless .Li from "..". OK jmc@
2011-07-18most of the pieces are there... still need to open a new connection ifMarc Espie
server drops us.
2011-07-18a little better, but not yet readyMarc Espie
2011-07-18skeleton for grabbing files...Marc Espie
2011-07-18Also handle normal Content-LengthMarc Espie
2011-07-18chunked directory transfersMarc Espie
2011-07-18a few typos, nothing working yet... needs to parse Chunked transferMarc Espie
2011-07-18allow pkg_delete -a pkgname to do something useful:Marc Espie
- first delete the list of packages - then if -a was specified, try deleting everything else (but only !manual)
2011-07-17typo in usage summaryjoshua stein
2011-07-17now that the API is working, reorg the code correctly: DeleteSet is theMarc Espie
base class, and UpdateSet adds stuff to it. During cleanup, also clean-up kept packages, there's no reason not to.
2011-07-17unify the main loop some more: add and delete do more or less theMarc Espie
same processing. start making process_set similar as well
2011-07-17protect against really weird packing-listsMarc Espie
2011-07-16missing $OpenBSD$ markerMarc Espie
2011-07-16remove unused variableCharles Longeau
ok miod@ matthew@
2011-07-14move deptree_header into AddDelete, use it in pkg_delete.Marc Espie
Now, pkg_delete will display things a lot like pkg_add, spelling out what reverse dependencies trigger the deletion of a given package at that point in the list. by popular demand.
2011-07-13print more information in request state tracesEric Faurot
ok gilles@
2011-07-13fix indentation in switchEric Faurot
ok gilles@
2011-07-13do not make these values look like they are flags.Eric Faurot
ok gilles@
2011-07-13share codeMarc Espie
2011-07-13let short_print work on DeleteSetsMarc Espie
2011-07-13create DeleteSet as a specialized version of UpdateSets that printMarc Espie
differently, specialize the states a wee little bit.
2011-07-13fix a nasty bug: hints are evaluated lazily, so if a package is mentionedMarc Espie
on the command line, it's possible it won't be marked as user_tagged early enough. So, when we encounter it, the package is already installed, it will be moved to kept in the set... and we need to tag it anyways
2011-07-12Allow syslogc -n XX to display less than the whole file, and -n XX -f toStuart Henderson
display more/less than the default of 10. ok mpf@ jmc@
2011-07-12be ways more verbose with -aMarc Espie
2011-07-12put back options -Dbaddepend -DdependenciesMarc Espie
uninstalled and verbosedeps are now always on. ambiguous will die ?
2011-07-12document new -aMarc Espie
2011-07-12new pkg_delete, very similar to pkg_add, support for -aMarc Espie
2011-07-12wip, definitely not finished (and not used) yetMarc Espie
2011-07-12refactorMarc Espie
2011-07-12write a small blurb about `installed manually' and how it fits with the otherMarc Espie
tools.
2011-07-12tweak: need -a -a to reverse @option manual-installMarc Espie
2011-07-12move option -a up into common add/delete code, in preparation for pkg_deleteMarc Espie
change.
2011-07-11EDITOR or VISUAL are not a path. They are a string that needs to beTheo de Raadt
added to the front of the file, then sent through system() of equiv. ok aja
2011-07-11use more XXX for mktemp; ok ajacoutotTheo de Raadt
2011-07-09zap a glob leftoverAlexander Hall
noted by weerd@, thanks
2011-07-09- use pkg_info -q instead of looking in /var/db/pkg/*. it is not as expensiveAlexander Hall
as I thought. - pass -D repair to pkg_add - move the 'updating firmwares' message into rc.firsttime first two from espie@ and sthen@, respectively; thanks "looks good" deraadt@
2011-07-09* more concise .NdIngo Schwarze
* no need to repeat the .Nm below .Sh SYNOPSIS * avoid future tense and slightly tweak wording * make it clear that the Internet will be accessed ok halex@
2011-07-09use FD_CLOEXEC instead of 1.David Hill
ok millert
2011-07-09tweak previous;Jason McIntyre