]> Sergey Matveev's repositories - public-inbox.git/blobdiff - script/public-inbox-extindex
support -C (chdir) for most non-daemon commands
[public-inbox.git] / script / public-inbox-extindex
index dcb12e5ad55490b29d8af5a423259cd4c7752cc6..1572a1d23d82dad663a81956c3b95ea955ee13f0 100755 (executable)
@@ -17,7 +17,7 @@ usage: public-inbox-extindex [options] [EXTINDEX_DIR] [INBOX_DIR...]
   --batch-size=BYTES  flush changes to OS after a given number of bytes
   --max-size=BYTES    do not index messages larger than the given size
   --gc                perform garbage collection instead of indexing
-  --dedupe            fix prior deduplication errors
+  --dedupe[=MSGID]    fix prior deduplication errors (may be repeated)
   --verbose | -v      increase verbosity (may be repeated)
   --dry-run | -n      dry-run on --dedupe
 
@@ -29,8 +29,8 @@ GetOptions($opt, qw(verbose|v+ reindex rethread compact|c+ jobs|j=i
                fsync|sync!
                indexlevel|index-level|L=s max_size|max-size=s
                batch_size|batch-size=s
-               dedupe gc commit-interval=i watch scan! dry-run|n
-               all help|h))
+               dedupe:s@ gc commit-interval=i watch scan! dry-run|n
+               all C=s@ help|h))
        or die $help;
 if ($opt->{help}) { print $help; exit 0 };
 die "--jobs must be >= 0\n" if defined $opt->{jobs} && $opt->{jobs} < 0;
@@ -40,6 +40,7 @@ STDERR->autoflush(1);
 local $SIG{USR1} = 'IGNORE'; # to be overridden in eidx_sync
 # require lazily to speed up --help
 require PublicInbox::Admin;
+PublicInbox::Admin::do_chdir(delete $opt->{C});
 my $cfg = PublicInbox::Config->new;
 my $eidx_dir = shift(@ARGV);
 unless (defined $eidx_dir) {
@@ -76,7 +77,7 @@ if ($opt->{gc}) {
        if ($opt->{all}) {
                $eidx->attach_config($cfg);
        } else {
-               $eidx->attach_inbox($_) for @ibxs;
+               $eidx->attach_config($cfg, \@ibxs);
        }
        if ($opt->{watch}) {
                $cfg = undef; # save memory only after SIGHUP