lemonldap-ng/modules/lemonldap-ng-common/scripts/convertConfig
2009-12-15 16:31:13 +00:00

67 lines
1.6 KiB
Perl
Executable File

#!/usr/bin/perl
use strict;
use Getopt::Long;
use Lemonldap::NG::Common::Conf;
my %opts;
my $result = GetOptions ( \%opts, 'help|h', 'current|c=s', 'new|n=s', 'latest|l' );
if( $opts{help} or not ( $opts{current} and $opts{new} ) ) {
print STDERR "Usage: $0 --current=/current/lemonldap-ng.ini --new=/new/lemonldap-ng.ini\n";
print STDERR "# other parameters:
--latest -l
convert only last configuration
";
exit 1;
}
foreach( $opts{current}, $opts{new} ) {
unless( -e $_ ) {
print STDERR "$_ does not exist\n";
exit 2;
}
unless( -r $_ ) {
print STDERR "$_ is not readable\n";
exit 3;
}
}
my $old = Lemonldap::NG::Common::Conf->new({
confFile => $opts{current},
noCache=>1,
});
unless($old) {
print STDERR "Failed to get current conf : $Lemonldap::NG::Common::Conf::msg\n";
exit 4;
}
my $new = Lemonldap::NG::Common::Conf->new({
confFile => $opts{new},
force=>1,
noCache=>1,
cfgNumFixed=>1,
});
unless($new) {
print STDERR "Failed to create new conf object : $Lemonldap::NG::Common::Conf::msg\n";
exit 5;
}
my @available;
if($opts{lastest}){
@available = $old->lastCfg();
}else{
@available = $old->available();
}
foreach(@available) {
my $conf = $old->getConf({cfgNum=>$_});
eval { delete $conf->{reVHosts};
delete $conf->{cipher};
};
unless($conf){
print STDERR "\nFailed to get conf $_ : $Lemonldap::NG::Common::Conf::msg\n";
exit 6;
}
print "Conf $conf->{cfgNum}:";
my $r = $new->saveConf($conf);
print ($r ? "stored" : "failed: $Lemonldap::NG::Common::Conf::msg");
print "\n";
}