Removed check for PERL_UNICODE.

This commit is contained in:
hjp 2006-11-30 13:48:17 +00:00
parent df240ec622
commit 76eb5e0b27
2 changed files with 5 additions and 1 deletions

4
backup
View File

@ -6,5 +6,9 @@ use Simba::CA;
$ENV{PATH} = "/usr/bin";
my $ca = Simba::CA->new();
$ca->targets([
{ host => 'bernon.wsr.ac.at', dir => '/' }
]);
$ca->basedir('/backup/simba');
$ca->run();

View File

@ -48,7 +48,7 @@ sub new {
$self->{fh_log} = exists($opt->{fh_log}) ? $opt->{fh_log} : \*STDERR;
$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;