Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-06-21 | Print leading zeros in MAC addresses. Initial diff from Stanislav | Ray Lai | |
Kruchinin, idea to use ether_ntoa from Claudio Jeker. OK canacar, idea OK henning, jasper, and tedu. | |||
2007-06-20 | mention https protocol, for which support was added recently. | Steven Mestdagh | |
ok espie@ | |||
2007-06-20 | sprinkle code to deal gracefully with absent packing-lists. | Marc Espie | |
makes it easier for people to recover after a disk crash that leaves /var/db/pkg half-empty. | |||
2007-06-19 | add support for mapping route labels to AS-external route tags. | Reyk Floeter | |
manpage bits from jmc@ ok norby@ claudio@ | |||
2007-06-19 | Allow ospfd reconfiguration through SIGHUP, add SIGHUP handlers in | Pierre-Yves Ritschard | |
children like in bgpd so that ``pkill -1 ospfd'' works as expected. ok claudio@ | |||
2007-06-19 | don't go through the effort of creating a SIGHUP handler through | Pierre-Yves Ritschard | |
libevent just to ignore it, use SIG_IGN instead. this syncs hoststated with bgpd and (soon) ospfd. | |||
2007-06-19 | first draft of a tag solver, needs more flesh to be useful (especially: | Marc Espie | |
transform the lib cache into a tags/lib cache) | |||
2007-06-19 | sometimes, wanting to share code gives insight: disentangle the code | Marc Espie | |
that walks dependencies entirely. It is far less related to the main solver than I thought, it can be built when needed, and own its own state. Much cleaner design. | |||
2007-06-19 | Ignore SIGHUP in bgpd's children to allow the use of pkill -1 bgpd for | Pierre-Yves Ritschard | |
reloading. ``yeah that is good'' henning@ | |||
2007-06-19 | Do not fatal out with ``pipe closed'' when a short read occurs on one | Pierre-Yves Ritschard | |
of our socket pairs. Instead disable listening on the pipe, terminate the event loop, and let the parent process's SIGCHLD handler do a clean shutdown. from an ospfd diff by claudio, ok claudio@ | |||
2007-06-18 | ... and zap old code | Marc Espie | |
2007-06-18 | reorganize lookup_library so I can reuse the exact same algorithm to | Marc Espie | |
look up different things (in particular, the incremental lookup through dependencies). | |||
2007-06-18 | more uniform: all deps routines should be methods, even if they don't | Marc Espie | |
use the data. | |||
2007-06-18 | we're going to need more room for flags (again). | Pierre-Yves Ritschard | |
promote the field to u_int32_t. no impact on hoststatectl. | |||
2007-06-18 | add tag no shadow, to allow us to specify that we do NOT want tempfiles | Marc Espie | |
into some directories. a few minor style tweaks, such as using a nice join(map()) to build some strings. | |||
2007-06-17 | only display header if we actually display some information. | Marc Espie | |
Allows saying pkg_info -a -M, and not having 100s of empty lines corresponding to all packages without a MESSAGE. | |||
2007-06-17 | fix format for timestamps. Use a non-ambiguous subset of ISO8601. | Marc Espie | |
2007-06-17 | more scaffolding we don't really use yet. | Marc Espie | |
2007-06-17 | document @exec/@unexec variations in more detail. | Marc Espie | |
Point users at pkg_create for packing-list details (suggested by ajacoutot@) | |||
2007-06-17 | do not try to reopen the wsmouse device when | Robert Nagy | |
the calibration was not accurate enough and keep the device open all the time since there is no need to close and reopen it if we need to retry. | |||
2007-06-17 | add a bit of scaffolding for signatures | Marc Espie | |
2007-06-16 | introduce new stuff: @tag, to be used to tag files and other objects. | Marc Espie | |
Only one tag for now: no checksum. Will supersede @comment no checksum eventually. Benefit: errors out in case of a typo. | |||
2007-06-16 | Add variation on exec/unexec: | Marc Espie | |
@exec-always @unexec-always @exec-add @unexec-delete @exec-update @unexec-update with the obvious semantics that *update are only run during updates, and *add/delete are only run during `pure' additions/removals. This should solve the problem of those packages that `lose' manual configuration when you update them (e.g., all the mod_xxx apache stuff and postfix). caveat: you will need to go through one finaly broken update before the new stuff kicks in. | |||
2007-06-16 | FTP_KEEPALIVE as a crude interface to ftp -k. To be thought out later. | Marc Espie | |
this is just an experiment. | |||
2007-06-16 | use OpenBSD::Paths contents | Marc Espie | |
2007-06-14 | Print communities in a nicer format and include a missing well-known one. | Claudio Jeker | |
This is mostly from Stuart Henderson. OK canacar@ | |||
2007-06-14 | Really cleanup temporary directories. | Matthias Kilian | |
"commit that now, please." espie@ | |||
2007-06-14 | explicitly mark -S as deprecated, I'd love to use for something else... | Marc Espie | |
2007-06-14 | I don't know what we will do with system packages yet, but prevent | Marc Espie | |
them from getting deleted. | |||
2007-06-14 | minor changes: move @ignore to deprecated stuff (it's been out for a few | Marc Espie | |
months now), register lastfileobject for future changes, make a common class for uniqueoptions. | |||
2007-06-14 | The External Route Tag for AS-External-LSAs can be an arbitrary 32bit | Reyk Floeter | |
value and doesn't need to be an IPv4 address. It is more like a vendor-specific field. as discussed with claudio after looking into rfc2328 | |||
2007-06-13 | NBR_ACT_HELLO_CHK was missing in the nbr_action_names list. | Claudio Jeker | |
2007-06-13 | Don't RB_REMOVE() vertices in area_del() this will be done by vertex_free(). | Claudio Jeker | |
With this the RDE no longer crashes on shutdown. | |||
2007-06-13 | Ingnore updates that did not change the route. This enhances the signal to | Claudio Jeker | |
nois ratio on the routing socket. OK norby@ reyk@ | |||
2007-06-12 | reflect msf's changes to the imsg framework in hoststated. | Pierre-Yves Ritschard | |
2007-06-12 | put the fd passing from bgpd back in to hoststated's version of imsg, | Mathieu Sauve-Frankel | |
needed for layer 7 reload support. ok pyr@ | |||
2007-06-12 | use constant subs instead of variable names. | Marc Espie | |
Turns out completely specified variable names do not warn, even if strict, so the previous scheme was not immune from typos. | |||
2007-06-12 | tidy error messages: uses $! more consistently, do not append \n on die, | Marc Espie | |
do append \n on warn. Fix the two cases where the temp dir vanished too soon: not copying +DESC should have been apparent. Not finding a +DISPLAY file is not a reason for burping all over the place. | |||
2007-06-12 | tag directories and files with pid, so that we clean them up when the | Marc Espie | |
corresponding process dies, not before... | |||
2007-06-12 | When calculating as_ext routes only respect the connected flag for rt_nodes | Claudio Jeker | |
with d_type DT_NET. Without this directly connected DT_RTRs use the wrong nexthop and fail to install the as_ext route because the nexthop is not directly reachable. | |||
2007-06-12 | When removeing as-ext LSA initialise the metric to some sane default else | Claudio Jeker | |
the ospfd on the other side is dropping the packets because the sanity check fails. | |||
2007-06-11 | prepare more stuff to be able to deal with UpdateSets directly | Marc Espie | |
2007-06-11 | keep on extracting stuff | Marc Espie | |
2007-06-10 | give repository/locations slightly more control over package names. | Marc Espie | |
2007-06-10 | Add Paths.pm, to centralize all system dependent paths all over the place. | Marc Espie | |
okay millert@, deraadt@ | |||
2007-06-10 | extract constructor to create old handles. | Marc Espie | |
2007-06-10 | set_infodir when we can in PackageLocation. | Marc Espie | |
Create a full handle for replaced packages as well. | |||
2007-06-10 | make the replacement check methods slightly clearer, avoid doing two | Marc Espie | |
things at once, mostly. | |||
2007-06-10 | split create_handle code, so that we create the object as a trivial | Marc Espie | |
place-holder, then complete it later. This should allow us to create `empty shell' UpdateSets eventually, in replacement of pkgnames lists. | |||
2007-06-10 | refactor the code a bit, so that lists through ftp and htpp share more | Marc Espie | |
code. Finally handle ftp_proxy (close PR 5308). |