Changeset 770 for trunk


Ignore:
Timestamp:
02/13/18 17:19:14 (6 years ago)
Author:
Kris Deugau
Message:

/trunk

Tweak some log-filling bits in a few of the command line tools

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/compact-recs.pl

    r745 r770  
    5353# get userdata for log
    5454($dnsdb->{logusername}, undef, undef, undef, undef, undef, $dnsdb->{logfullname}) = getpwuid($<);
     55$dnsdb->{logfullname} =~ s/,//g;
    5556$dnsdb->{loguserid} = 0;        # not worth setting up a pseudouser the way the RPC system does
    5657$dnsdb->{logusername} = $dnsdb->{logusername}."/compact-recs.pl";
  • trunk/mergerecs

    r745 r770  
    6363# get userdata for log
    6464($dnsdb->{logusername}, undef, undef, undef, undef, undef, $dnsdb->{logfullname}) = getpwuid($<);
     65$dnsdb->{logfullname} =~ s/,//g;
    6566$dnsdb->{loguserid} = 0;        # not worth setting up a pseudouser the way the RPC system does
    6667$dnsdb->{logusername} = $dnsdb->{logusername}."/mergerecs";
  • trunk/tiny-import.pl

    r745 r770  
    118118# collect some things for logging
    119119($dnsdb->{logusername}, undef, undef, undef, undef, undef, $dnsdb->{logfullname}) = getpwuid($<);
     120$dnsdb->{logfullname} =~ s/,//g;
    120121$dnsdb->{loguserid} = 0;        # not worth setting up a pseudouser the way the RPC system does
    121122$dnsdb->{logusername} = $dnsdb->{logusername}."/tiny-import.pl";
Note: See TracChangeset for help on using the changeset viewer.