You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cleanup-tools/ngcp-cleanup-acc

20 lines
308 B

#!/usr/bin/perl
use strict;
use warnings;
use NGCP::Cleanup;
my $config_file = '/etc/ngcp-cleanup-tools/acc-cleanup.conf';
my $c;
eval {
$c = NGCP::Cleanup->new(config_file => $config_file);
$c->process;
};
if ($@) {
$c->error($@);
$c->env('dbh')->disconnect if $c->env('dbh');
}
exit 0;