* Thu Feb 20 2025 John Crisp <jcrisp@safeandsoundit.co.uk> 4.0-7.sme

- Fix experimental scalar now forbidded error [SME: 12935]
This commit is contained in:
John Crisp 2025-02-20 16:58:29 +01:00
parent 1244dae3d2
commit d840449725
2 changed files with 7 additions and 3 deletions

View File

@ -1837,8 +1837,9 @@ sub getSourceDirs($) {
# Remove duplicates
# This is done in the calling sub getSourceDirs but we need to do it before
@remoteDirs = sort ( keys { map { $_ => 1 } @remoteDirs } );
@localDirs = sort ( keys { map { $_ => 1 } @localDirs } );
@remoteDirs = sort (keys %{ { map { $_ => 1 } @remoteDirs } });
@localDirs = sort (keys %{ { map { $_ => 1 } @localDirs } });
# Write @SrcDirList to file
open my $fd, '>',

View File

@ -2,7 +2,7 @@ Summary: A rsync-based backup program for linux, adapted to Koozali SME server 1
%define name smeserver-affa
Name: %{name}
%define version 4.0
%define release 6
%define release 7
Version: %{version}
Release: %{release}%{?dist}
Vendor: Michael Weinberger <mweinber AT users DOT sourceforge DOT net> //// adaptation to sme-server Arnaud Guillaume <smeserver-affa AT guedel DOT eu>
@ -105,6 +105,9 @@ exit 0
exit 0
%changelog
* Thu Feb 20 2025 John Crisp <jcrisp@safeandsoundit.co.uk> 4.0-7.sme
- Fix experimental scalar now forbidded error [SME: 12935]
* Thu Feb 20 2025 John Crisp <jcrisp@safeandsoundit.co.uk> 4.0-6.sme
- Set affa permissions again - seems we've been struck by the usr merge [SME:12922]