Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-11-12 | some missing includes, from Joerg Sonnenberger <joerg@britannica.bec.de> | Henning Brauer | |
2004-11-12 | computed fullname. | Marc Espie | |
2004-11-11 | use from_installation and forget. | Marc Espie | |
2004-11-11 | forget packing-lists after deleting the package (avoid out-of-memory error | Marc Espie | |
when deleting large sets of packages). | |||
2004-11-11 | stuff that needs to be done. | Marc Espie | |
2004-11-11 | oops | Marc Espie | |
2004-11-11 | strchr("whatever", 0) returns non NULL. From Patrick Latifi. | Otto Moerbeek | |
ok deraadt@ millert@ | |||
2004-11-11 | Unbreak peer_localaddr() because Link Local Addresses reported by | Claudio Jeker | |
getifaddrs() have the scope id added to the address and so fuck up in the compare later. This part has bin stolen from ifconfig/ifconfig.c and shows the beauty of IPv6. Thank you KAME. disgusting but OK henning@ | |||
2004-11-11 | Unbreak link local IPv6 sessions by setting the correct scope_id in | Claudio Jeker | |
addr2sa. OK henning@ | |||
2004-11-11 | Don't hardcode the prefix table to the IPv4 one, especially if there is | Claudio Jeker | |
already code to select the correct tree by AF. | |||
2004-11-11 | Pass the copied as-path attributes to the filter function and not the | Claudio Jeker | |
original. Affected code is currently still unreachable. | |||
2004-11-11 | reversed test. | Marc Espie | |
2004-11-11 | new accounting method that works with chroot installations. | Marc Espie | |
2004-11-11 | cache packing-lists, so that we don't read them again and again. | Marc Espie | |
big win as soon as pkg_add -r updates two or three packages with lots of dependencies. | |||
2004-11-11 | oops, updatable is an object method, so $self is first parameter. | Marc Espie | |
Mark @unexec /sbin/ldconfig -R and @unexec install-info --delete as innocuous. | |||
2004-11-11 | spaces at EOL in comments, spotted by theo | Henning Brauer | |
2004-11-11 | NOTREACHED not not reached! Stupid me. | Claudio Jeker | |
2004-11-11 | Store the local v4 and v6 address of a session. For IPv4 sessions the first | Claudio Jeker | |
IPv6 address with global scope of the interface used by the session is used. In any case the local endpoint of the session is used for one of the two no matter what scope. OK henning@ | |||
2004-11-11 | symetry: updating a package means removing the old one and adding the new | Marc Espie | |
one, tag unsafe operations accordingly... | |||
2004-11-11 | move collision reporter to a separate file, so that it doesn't get loaded | Marc Espie | |
all the time. | |||
2004-11-11 | store a ref to %forced in $state, for access anywhere. | Marc Espie | |
2004-11-11 | File::Copy use moves as well. | Marc Espie | |
2004-11-11 | restrict update operation less: we're not bothered by @exec or INSTALL, | Marc Espie | |
only DEINSTALL or @unexec (we should need to run symetric checks on the package we're going to install, though...) allows forced replacement: script running, and breaking forward dependencies. Communicate more about what may break. | |||
2004-11-11 | need to move collision_report over as well, and use PackageInfo routines. | Marc Espie | |
2004-11-11 | package names starting with . are hidden from pkg_info by default. | Marc Espie | |
-A shows them. | |||
2004-11-11 | synch validate_plist | Marc Espie | |
2004-11-11 | move some code from pkg_add to OpenBSD/Add.pm, for symetry with pkg_delete. | Marc Espie | |
change prototype of validate_plist, ditch globals cdrom_only and ftp_only (stash this into state). Use Warn properly. | |||
2004-11-11 | typo | Marc Espie | |
2004-11-11 | don't touch font directories if -n either... | Marc Espie | |
2004-11-11 | introduce shortcuts to read/write contents from_installation/to_installation | Marc Espie | |
use these to simplify all those packing lists manipulations. demote non-root detection to a warning in -n mode: fix a couple of minor bugs, of stuff that was run in -n mode and should not. Namely, manpages were indexed/unindexed (ouch) and tempfiles were creating during updates. | |||
2004-11-11 | fix interaction of -n -v -r. | Marc Espie | |
don't enable the progress meter if a very verbose mode is on. | |||
2004-11-11 | New config statement "rde route-age [evaluate|ignore]". If set to evaluate | Claudio Jeker | |
the best path selection will not only be based on the path attributes but also on the age of the prefix. This is an extension to the RFC. The default is ignore but previously it was implicitly set to evaluate. OK henning@ man page OK jaredy@ jmc@ | |||
2004-11-11 | hide lib packages | Marc Espie | |
2004-11-10 | Use ${STATIC} rather than -static (dont hardcode). ok miod@ | Dale Rahn | |
2004-11-10 | prefix_write() works also for IPv6. OK henning@ | Claudio Jeker | |
2004-11-10 | It is not needed to mask the value wit 0xff as it is < 255. OK henning@ | Claudio Jeker | |
2004-11-10 | "not reached" does not help LINT use NOTREACHED instead and use it only in | Claudio Jeker | |
places where needed. OK henning@ | |||
2004-11-10 | Remove no longer needed code. OK henning@ | Claudio Jeker | |
2004-11-10 | ntp_adjtime() -> priv_adjtime() | Henning Brauer | |
ntp_settime() -> priv_settime() ntp_host_dns() -> priv_host_dns() | |||
2004-11-10 | const'ify conffile | Henning Brauer | |
From: Joerg Sonnenberger <joerg@britannica.bec.de> | |||
2004-11-10 | use ExtraInfo, finally: allows pkg_info to report packages according to | Marc Espie | |
PKGPATH, e.g., pkg_info -e x11/kde/base3 will tell you which version (if any) of kdebase is installed. Necessary for achieving updates. | |||
2004-11-10 | resurrect -e, document that it uses packages-specs now. | Marc Espie | |
2004-11-09 | oops again. | Marc Espie | |
2004-11-09 | oops, dropped one line I shouldn't have. | Marc Espie | |
2004-11-09 | -s seamless with other options: let it work with -a, let it be on for -v. | Marc Espie | |
Count totalsize, and display it at end if > 1 package. | |||
2004-11-09 | kill old Logger interface, use $state->print() to report problems at | Marc Espie | |
end exclusively now. | |||
2004-11-09 | alternate between package names correctly when replacing a package. | Marc Espie | |
2004-11-09 | kill dup code | Marc Espie | |
2004-11-09 | -s option, grange's request. | Marc Espie | |
2004-11-09 | in the list of RIRs: | Henning Brauer | |
-add LACNIC -RIPE serves more than just europe, and ARIN more than north america -order alphabetically From: Klaus Steding-Jessen <jessen@nic.br> |