From 0139fe0e9716d7035ce81a19a0987e4119234b43 Mon Sep 17 00:00:00 2001 From: Sitaram Chamarty Date: Fri, 14 May 2010 18:20:31 +0530 Subject: [PATCH] (big-config) compile: dont complain about "@foo" not having a pubkey --- src/gl-compile-conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gl-compile-conf b/src/gl-compile-conf index dd96381..9dbb6fb 100755 --- a/src/gl-compile-conf +++ b/src/gl-compile-conf @@ -576,7 +576,7 @@ for my $pubkey (`find . -type f`) # lint check 3; a little more severe than the first two I guess... for my $user (sort keys %user_list) { - next if $user =~ /^(gitweb|daemon|\@all|~\$creator|\$readers|\$writers)$/ or $user_list{$user} eq 'has pubkey'; + next if $user =~ /^(gitweb|daemon|\@.*|~\$creator|\$readers|\$writers)$/ or $user_list{$user} eq 'has pubkey'; print STDERR "$WARN user $user in config, but has no pubkey!\n"; }