[Bug 285614] man dhclient.conf contains an error in script description
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285614 Jim B. changed: What|Removed |Added CC||j...@jimby.name --- Comment #2 from Jim B. --- Created attachment 258980 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258980&action=edit Patch incorporating both concerns A patch incorporating both concerns is attached. The rendered section reads: ... used to test predefined leases, if any, and also called once if no valid lease can be identified. For more information on predefined leases, see dhclient.leases(5). Additional information on using DHCP client configuration scripts is found in dhclient.script(8). ... -- You are receiving this mail because: You are the assignee for the bug.
[Bug 285614] man dhclient.conf contains an error in script description
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285614 --- Comment #3 from Jim B. --- (In reply to Jim B. from comment #2) Entered in phabricator as https://reviews.freebsd.org/D49489 -- You are receiving this mail because: You are the assignee for the bug.
[Bug 283891] awk(1) prints a wrong line number in the error message
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=283891 Mark Linimon changed: What|Removed |Added Assignee|b...@freebsd.org|i...@freebsd.org Flags||mfc-stable14? -- You are receiving this mail because: You are the assignee for the bug.
[Bug 225864] malformed dates with current Catalan timedef files
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=225864 Mark Linimon changed: What|Removed |Added Status|In Progress |Open --- Comment #10 from Mark Linimon --- ^Triage: this PR does not appear to actually be In Progress. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 281045] cd /usr/src && make packages creates stale symlinks
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=281045 Mark Linimon changed: What|Removed |Added Status|In Progress |Open --- Comment #3 from Mark Linimon --- ^Triage: this PR does not appear to actually be In Progress. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 281045] cd /usr/src && make packages creates stale symlinks
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=281045 --- Comment #4 from Phil Shafer --- The "test" encoder does not need to be symlinked at all, since it's a test driver for testing the "encoding" API in libxo. It's strictly for development and testing ("make test"). Thanks, Phil -- You are receiving this mail because: You are the assignee for the bug.
[Bug 59564] from(1) add option (-S) to also display subject headers
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=59564 Mark Linimon changed: What|Removed |Added Attachment #37406|0 |1 is obsolete|| -- You are receiving this mail because: You are the assignee for the bug.
[Bug 256254] installworld fails WITHOUT_AUTHPF
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=256254 --- Comment #2 from Volodymyr Kostyrko --- Ah, I see what's going on. But this way it could be triggered by almost everything there, like missing audit or unbound. CHECK_UIDS= \ ${MK_AUDIT:Mno:?:auditstd} \ ${MK_NTPD:Mno:?:ntpd} CHECK_GIDS= \ ${MK_AUDIT:Mno:?:audit} \ ${MK_NTPD:Mno:?:ntpd} -- You are receiving this mail because: You are the assignee for the bug.
[Bug 285630] makefs: cd9660 RockRidge extensions ignore timestamp provided by -T
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285630 Bojan Novković changed: What|Removed |Added Assignee|b...@freebsd.org|bnov...@freebsd.org -- You are receiving this mail because: You are the assignee for the bug.
[Bug 285630] makefs: cd9660 RockRidge extensions ignore timestamp provided by -T
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285630 Bojan Novković changed: What|Removed |Added Blocks||236081 Referenced Bugs: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236081 [Bug 236081] [release][reproducibility] ISO images and memstick images are not build reproducible -- You are receiving this mail because: You are the assignee for the bug.
[Bug 236081] [release][reproducibility] ISO images and memstick images are not build reproducible
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236081 Bojan Novković changed: What|Removed |Added Depends on||285630 Referenced Bugs: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285630 [Bug 285630] makefs: cd9660 RockRidge extensions ignore timestamp provided by -T -- You are receiving this mail because: You are the assignee for the bug.
[Bug 283747] kernel panic after telegraf service restart
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=283747 --- Comment #44 from Eero Hänninen --- I forgot to mention that this time the crash happened on its own, without any service restart, not even Telegraf. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 285614] man dhclient.conf contains an error in script description
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285614 Ed Maste changed: What|Removed |Added CC||ema...@freebsd.org --- Comment #1 from Ed Maste --- I think the intent is "For more information [on predefined leases], see..." and is appropriate in that context. I agree there should be a reference to dhclient-script(8) as well, though. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 256254] installworld fails WITHOUT_AUTHPF
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=256254 Ed Maste changed: What|Removed |Added CC||ema...@freebsd.org --- Comment #1 from Ed Maste --- The check in Makefile.inc1: .if !defined(DB_FROM_SRC) # # Check for missing UIDs/GIDs. # CHECK_UIDS= auditdistd CHECK_GIDS= audit CHECK_UIDS+=ntpd CHECK_GIDS+=ntpd CHECK_UIDS+=proxy CHECK_GIDS+=proxy authpf CHECK_UIDS+=smmsp CHECK_GIDS+=smmsp CHECK_UIDS+=unbound CHECK_GIDS+=unbound _installcheck_world: __installcheck_UGID __installcheck_UGID: .PHONY .for uid in ${CHECK_UIDS} @if ! `id -u ${uid} >/dev/null 2>&1`; then \ echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \ false; \ fi .endfor .for gid in ${CHECK_GIDS} @if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \ echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \ false; \ fi .endfor .endif These UIDs and GIDs are checked unconditionally right now, but we could easily include them based on the associated options - e.g. with something like this diff: -CHECK_GIDS+= proxy authpf +CHECK_GIDS+= proxy +.if ${MK_AUTHPF} != no +CHECK_GIDS+= authpf +.endif -- You are receiving this mail because: You are the assignee for the bug.
[Bug 285630] makefs: cd9660 RockRidge extensions ignore timestamp provided by -T
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285630 Bug ID: 285630 Summary: makefs: cd9660 RockRidge extensions ignore timestamp provided by -T Product: Base System Version: CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: b...@freebsd.org Reporter: bnov...@freebsd.org The cd9660 RockRidge extensions specify a TX record that stores the timestamp from the underlying inode. However, makefs' implementation of the TF record ignores a timestamp passed using the -T flag, making the resulting ISO image nonreproducible. This issue can be observed in the top-level directories by running 'diffoscope' on two 'bootonly.iso' images that have been built back-to-back with a fixed timestamp ('-T 1742574909'): | drwx-- 1800 4096 2025-03-21 16:35:09.00 . │ -drwxr-xr-x 200 6144 2025-03-24 14:48:55.00 bin │ --r-xr-xr-x 600- 2025-03-24 14:48:55.00 bin/cat │ --r-xr-xr-x 600- 2025-03-24 14:48:55.00 bin/chflags --snip-- | +drwxr-xr-x 200 6144 2025-03-24 14:57:38.00 bin │ +-r-xr-xr-x 600- 2025-03-24 14:57:38.00 bin/cat │ +-r-xr-xr-x 600- 2025-03-24 14:57:38.00 bin/chflags The dot directory record has the appropriate timestamp set, but the rest of the directories do not. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 284105] gvinum(8) should not refer to an outdated wiki page for the deprecation plan
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=284105 Mark Linimon changed: What|Removed |Added Status|In Progress |Open --- Comment #2 from Mark Linimon --- ^Triage: this PR does not appear to actually be In Progress. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 59564] from(1) add option (-S) to also display subject headers
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=59564 Mark Linimon changed: What|Removed |Added Attachment #37407|0 |1 is obsolete|| --- Comment #4 from Mark Linimon --- Created attachment 259001 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=259001&action=edit from.1.diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 65228] Allow rup(1) to parse hostnames from a defined file.
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=65228 Mark Linimon changed: What|Removed |Added Attachment #41737|0 |1 is obsolete|| --- Comment #3 from Mark Linimon --- Created attachment 258992 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258992&action=edit rup.diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 61978] sync setkey(8) token.l with KAME
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=61978 Mark Linimon changed: What|Removed |Added Attachment #39293|0 |1 is obsolete|| --- Comment #7 from Mark Linimon --- Created attachment 258994 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258994&action=edit setkey.patch ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 60892] added -p option to kldxref(8) to allow creation of hints file in alternate path
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=60892 Mark Linimon changed: What|Removed |Added Attachment #38477|0 |1 is obsolete|| --- Comment #4 from Mark Linimon --- Created attachment 258995 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258995&action=edit kldxref.c.diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 59775] ftpd(8)/FreeBSD 5: incorrect reply for "unimplemented" SITE command
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=59775 Mark Linimon changed: What|Removed |Added Attachment #258997|0 |1 is obsolete|| --- Comment #4 from Mark Linimon --- Created attachment 258998 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258998&action=edit ftpcmd.y.diff ^Triage: rebase patch, take 2. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 285637] printf.3 long lines exceeding 80 columns
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285637 --- Comment #1 from Steve Kargl --- Created attachment 258987 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258987&action=edit patch to adjust columns There's probably a better way to do this. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 58483] mount(8): allow type special or node relative names
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=58483 Mark Linimon changed: What|Removed |Added Attachment #36498|0 |1 is obsolete|| --- Comment #4 from Mark Linimon --- Created attachment 259002 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=259002&action=edit mount.c.diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 59772] ftpd(8)/FreeBSD 5: support for tcp_wrappers in daemon mode
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=59772 Mark Linimon changed: What|Removed |Added Attachment #37584|0 |1 is obsolete|| --- Comment #4 from Mark Linimon --- Created attachment 258999 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258999&action=edit ftpd.Makefile.diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 59564] from(1) add option (-S) to also display subject headers
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=59564 --- Comment #3 from Mark Linimon --- Created attachment 259000 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=259000&action=edit from.c.diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 66988] apm(8) check validation of the returned values
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=66988 Mark Linimon changed: What|Removed |Added Attachment #43065|0 |1 is obsolete|| --- Comment #3 from Mark Linimon --- Created attachment 258990 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258990&action=edit apm.diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 94052] Add option to script(1) to suppress carriage-returns in log file.
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=94052 Mark Linimon changed: What|Removed |Added Attachment #62997|0 |1 is obsolete|| --- Comment #3 from Mark Linimon --- Created attachment 258880 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258880&action=edit script.diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 59775] ftpd(8)/FreeBSD 5: incorrect reply for "unimplemented" SITE command
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=59775 Mark Linimon changed: What|Removed |Added Attachment #37587|0 |1 is obsolete|| --- Comment #3 from Mark Linimon --- Created attachment 258997 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258997&action=edit ftpcmd.y.diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.