| 1 | #!/usr/bin/perl
|
|---|
| 2 | # move blocks listed with one org to another. intended for orgs that have several bytestrings as names in WHOIS.
|
|---|
| 3 | ##
|
|---|
| 4 | # $Id: orgmove 73 2025-09-05 20:04:46Z kdeugau $
|
|---|
| 5 | # Copyright 2009-2010,2025 Kris Deugau <kdeugau@deepnet.cx>
|
|---|
| 6 | #
|
|---|
| 7 | # This program is free software: you can redistribute it and/or modify
|
|---|
| 8 | # it under the terms of the GNU General Public License as published by
|
|---|
| 9 | # the Free Software Foundation, either version 3 of the License, or
|
|---|
| 10 | # (at your option) any later version.
|
|---|
| 11 | #
|
|---|
| 12 | # This program is distributed in the hope that it will be useful,
|
|---|
| 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 15 | # GNU General Public License for more details.
|
|---|
| 16 | #
|
|---|
| 17 | # You should have received a copy of the GNU General Public License
|
|---|
| 18 | # along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|---|
| 19 | ##
|
|---|
| 20 |
|
|---|
| 21 | use strict;
|
|---|
| 22 | use warnings;
|
|---|
| 23 | use DBI;
|
|---|
| 24 |
|
|---|
| 25 | # push "the directory the script is in" into @INC
|
|---|
| 26 | use FindBin;
|
|---|
| 27 | use lib "$FindBin::RealBin/";
|
|---|
| 28 |
|
|---|
| 29 | use DNSBL 3.0;
|
|---|
| 30 |
|
|---|
| 31 | die "Usage: orgmove <config name> <old orgid> <new orgid>\n" if !$ARGV[2];
|
|---|
| 32 | my $cfgname = shift @ARGV;
|
|---|
| 33 |
|
|---|
| 34 | my $dnsbl = new DNSBL (configfile => "/etc/dnsbl/$cfgname.conf");
|
|---|
| 35 | $dnsbl->connect;
|
|---|
| 36 |
|
|---|
| 37 | $dbh->{AutoCommit} = 0;
|
|---|
| 38 |
|
|---|
| 39 | my $sth1 = $dbh->prepare("update blocks set orgid=? where orgid=?");
|
|---|
| 40 | my $sth2 = $dbh->prepare("delete from orgs where orgid=?");
|
|---|
| 41 |
|
|---|
| 42 | print "updating orgid $ARGV[0] to $ARGV[1]...\n";
|
|---|
| 43 | $sth1->execute($ARGV[1],$ARGV[0]) or die "died horribly: $!\n";
|
|---|
| 44 | print "failed org change ($ARGV[0] -> $ARGV[1]): ".$sth1->errstr."\n" if $sth1->err;
|
|---|
| 45 | $sth2->execute($ARGV[0]);
|
|---|
| 46 | print "failed org delete ($ARGV[0]): ".$sth2->errstr."\n" if $sth2->err;
|
|---|
| 47 |
|
|---|
| 48 | $dbh->commit;
|
|---|