2010-07-25 17:25:32 +02:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
# documentation for this program is right here, please read
|
2010-07-25 17:25:32 +02:00
|
|
|
|
2011-03-28 15:24:32 +02:00
|
|
|
# IMPORTANT: also see usage notes below
|
2011-01-15 16:39:56 +01:00
|
|
|
|
|
|
|
# BACKGROUND/PURPOSE:
|
2010-07-25 17:25:32 +02:00
|
|
|
|
|
|
|
# - an external program populates "keydir" with *all* keys and then
|
2011-01-15 16:39:56 +01:00
|
|
|
# calls this program, giving "keydir" as arg-1
|
2010-07-25 17:25:32 +02:00
|
|
|
# - we then call gitolite.pm's "setup_authkeys" function to do its thing
|
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
# arg-1: keydir
|
2010-07-25 17:25:32 +02:00
|
|
|
|
|
|
|
# DISCUSSION:
|
|
|
|
#
|
|
|
|
# For now, we will assume *all* the keys are in the keydir passed. The
|
2011-01-15 16:39:56 +01:00
|
|
|
# setup_authkeys routine factored out from the old gl-compile-conf is not
|
|
|
|
# setup to take a partial set of keys and create the ~/.ssh/authorized_keys
|
|
|
|
# file.
|
2010-07-25 17:25:32 +02:00
|
|
|
#
|
2011-01-15 16:39:56 +01:00
|
|
|
# Also, there are issues to do with *deleted* keys that need to be taken care
|
|
|
|
# of.
|
2010-07-25 17:25:32 +02:00
|
|
|
#
|
2011-01-15 16:39:56 +01:00
|
|
|
# All in all, unless it is shown to be quite inefficient, I'd much prefer
|
|
|
|
# processing *all* keys each time there is a change.
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
use FindBin;
|
|
|
|
BEGIN { $ENV{GL_BINDIR} = $FindBin::Bin; }
|
|
|
|
|
|
|
|
use lib $ENV{GL_BINDIR};
|
|
|
|
use gitolite_rc;
|
|
|
|
use gitolite;
|
|
|
|
|
|
|
|
use Getopt::Long;
|
|
|
|
my $batch = 0;
|
|
|
|
GetOptions('batch' => \$batch);
|
|
|
|
|
|
|
|
# prevent newbie from running it accidentally and clobbering his authkeys file!
|
|
|
|
unless ($batch) {
|
2010-07-25 17:25:32 +02:00
|
|
|
print STDERR "
|
|
|
|
This is a cronnable, batchable, program to rewrite ~/.ssh/authorized_keys
|
2011-08-26 03:40:20 +02:00
|
|
|
using public keys in a given directory. You MUST make sure you run the
|
|
|
|
one that is in the same directory as that used by gl-auth-command (and for
|
|
|
|
what that is, see ~/.ssh/authorized_keys).
|
2011-03-28 15:24:32 +02:00
|
|
|
|
2011-08-26 03:40:20 +02:00
|
|
|
Except for the deprecated 'from-client' install mode, this should work:
|
2011-03-28 15:24:32 +02:00
|
|
|
|
2011-08-26 03:40:20 +02:00
|
|
|
gl-setup-authkeys -batch keydir
|
2011-03-28 15:24:32 +02:00
|
|
|
|
2011-08-26 03:40:20 +02:00
|
|
|
where 'keydir' contains a bunch of '*.pub' files.\n\n";
|
2010-07-25 17:25:32 +02:00
|
|
|
|
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
# quick sanity check and run
|
|
|
|
my $keydir = shift or die "I need a directory name\n";
|
|
|
|
-d $keydir or die "$keydir should be a directory\n";
|
|
|
|
|
2011-01-15 16:39:56 +01:00
|
|
|
setup_authkeys($keydir);
|