=================================================================== RCS file: /cvs/openbsd/update_openbsd/post_dmesg_to_nycbug,v retrieving revision 1.9 retrieving revision 1.11 diff -u -r1.9 -r1.11 --- openbsd/update_openbsd/post_dmesg_to_nycbug 2017/03/10 19:15:38 1.9 +++ openbsd/update_openbsd/post_dmesg_to_nycbug 2018/12/16 23:49:03 1.11 @@ -34,12 +34,13 @@ } if (my $version = sysctl qw( kern.version )) { - $version =~ s/\)\K.*//; + my $machine = sysctl qw( hw.machine ); + $version =~ s/\)\K.*/ $machine/; $description = "$version on $description"; } } -print "'$description'\nAbout to post, OK? "; +print "'$description'\nAbout to post as $email ($nickname), OK? "; readline STDIN; open my $dm, '<', '/var/run/dmesg.boot' or die $!;