Removed check for PERL_UNICODE.
This commit is contained in:
parent
df240ec622
commit
76eb5e0b27
4
backup
4
backup
|
@ -6,5 +6,9 @@ use Simba::CA;
|
||||||
$ENV{PATH} = "/usr/bin";
|
$ENV{PATH} = "/usr/bin";
|
||||||
|
|
||||||
my $ca = Simba::CA->new();
|
my $ca = Simba::CA->new();
|
||||||
|
$ca->targets([
|
||||||
|
{ host => 'bernon.wsr.ac.at', dir => '/' }
|
||||||
|
]);
|
||||||
|
$ca->basedir('/backup/simba');
|
||||||
|
|
||||||
$ca->run();
|
$ca->run();
|
||||||
|
|
|
@ -48,7 +48,7 @@ sub new {
|
||||||
$self->{fh_log} = exists($opt->{fh_log}) ? $opt->{fh_log} : \*STDERR;
|
$self->{fh_log} = exists($opt->{fh_log}) ? $opt->{fh_log} : \*STDERR;
|
||||||
$self->{log_level} = 99;
|
$self->{log_level} = 99;
|
||||||
|
|
||||||
die "PERL_UNICODE must not be set!" if $ENV{PERL_UNICODE};
|
#die "PERL_UNICODE must not be set!" if $ENV{PERL_UNICODE};
|
||||||
|
|
||||||
return $self;
|
return $self;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue