[BACK]Return to post_dmesg_to_nycbug CVS log [TXT][DIR] Up to [local] / openbsd / update_openbsd

Diff for /openbsd/update_openbsd/post_dmesg_to_nycbug between version 1.4 and 1.5

version 1.4, 2015/02/23 16:12:27 version 1.5, 2015/03/03 18:56:08
Line 3 
Line 3 
 use warnings;  use warnings;
 use feature 'say';  use feature 'say';
   
   use Sys::Hostname;
 use HTTP::Tiny;  use HTTP::Tiny;
   
 # This script posts your OpenBSD dmesg to the NYC*BUG dmesg archive.  # This script posts your OpenBSD dmesg to the NYC*BUG dmesg archive.
   
   my $nickname = "$ENV{USER}";
   my $email    = "$ENV{USER}\@" . hostname();
   
 my @sysctls = (  my @sysctls = (
     [qw( hw.vendor hw.product hw.version  )],      [qw( hw.vendor hw.product hw.version  )],
     [qw( hw.model )],      [qw( hw.model )],
Line 37 
Line 41 
     'http://www.nycbug.org/index.cgi',      'http://www.nycbug.org/index.cgi',
     {   action      => 'dmesgd',      {   action      => 'dmesgd',
         do          => 'addd',          do          => 'addd',
         nickname    => 'afresh1',          nickname    => $nickname,
         email       => 'andrew+dmesgd@afresh1.com',          email       => $email,
         description => $description,          description => $description,
         dmesg       => $dmesg,          dmesg       => $dmesg,
     }      }

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>