Quantcast
Channel: Zimbra Forums
Viewing all articles
Browse latest Browse all 776

Installation and Upgrade • Re: Zimbra 10 FOSS Installation Guide

$
0
0
No luck upgrading from 9.0.0.ZEXTRAS.20231104.UBUNTU20.64 UBUNTU20_64 FOSS edition

I think you have to modify the version_cmp function in zmupgrade.pm which is in zimbra-core_10.0.5.GA.1000.UBUNTU20.64_amd64.deb
because Zextras have changed the version from GA to ZEXTRAS???

So the Zimbra 9 Zextras builds are a dead end...

Code:

sub version_cmp($$){  my $left = shift;  my $right = shift;  $left =~ s/ALPHA/0./;  $right =~ s/ALPHA/0./;  $left =~ s/BETA/1./;  $right =~ s/BETA/1./;  $left =~ s/RC/2./;  $right =~ s/RC/2./;  $left =~ s/GA/3./;  $right =~ s/GA/3./;  my @left_a = split(/[._]/, $left, 5);  my @right_a = split(/[._]/, $right, 5);  for( my $i = 0; $i < 5; ++$i )  {    $left_a[$i] ||= 0;    $right_a[$i] ||= 0;    return -1     if( $left_a[$i] < $right_a[$i] );    return 1      if( $left_a[$i] > $right_a[$i] );  }  return 0;}
Could you include a modified version of zimbra-core @innotelinc @ianw1974 ?

Statistics: Posted by chadima — Sun Dec 17, 2023 4:03 pm



Viewing all articles
Browse latest Browse all 776

Trending Articles