Skip to content

Commit

Permalink
compile: special-case 'gitweb' and 'daemon' from the linting
Browse files Browse the repository at this point in the history
not a big deal since there's a very simple and obvious workaround -- create a
new keypair, throw away the private key, and use the pubkey
  • Loading branch information
Sitaram Chamarty committed Oct 3, 2009
1 parent 1b9969f commit c15c757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gl-compile-conf
Expand Up @@ -339,7 +339,7 @@ for my $pubkey (glob("*"))
# lint check 3; a little more severe than the first two I guess...
for my $user (sort keys %user_list)
{
next if $user eq '@all' or $user_list{$user} eq 'has pubkey';
next if $user =~ /^(gitweb|daemon|\@all)$/ or $user_list{$user} eq 'has pubkey';
print STDERR "$ATTN user $user in config, but has no pubkey!\n";
}

Expand Down

0 comments on commit c15c757

Please sign in to comment.