I get this error when installing 6.5 on Suse 9.1. Any help would be much appreciated
“An unexpected error occured during post-install processing:Died at /home/shieldj/R7Beta/Linux/linux/tools/lib/NIC.pm line 2136. /home/shieldj/R7Beta/Linux/linux/tools/lib/NIC.pm line 3068 The installation failed for the local host.”
The line 2136 in the file
“/home/shieldj/R7Beta/Linux/linux/tools/lib/NIC.pm” Has this script:
"open (TEMPLATEFILE, $ctx->{pPath} . ‘/lotusini.tpl’) || die;
open (OUTFILE, ">$reslotusini") || die;
while (<TEMPLATEFILE>) {
# Rewrite /opt/lotus as the actual path.
s/\/opt\/lotus/$ctx->{ptPath}/;
print (OUTFILE $_);
}
close(OUTFILE) || die;
close(TEMPLATEFILE) || die;
}
}
return;
}"