use rsync flags AX (preserve ACLs and xattr)

This commit is contained in:
Dietmar Maurer 2012-06-14 09:08:48 +02:00
parent 614a15c04f
commit 36ac0df3f3
3 changed files with 8 additions and 2 deletions

View File

@ -1,7 +1,7 @@
RELEASE=2.1
VERSION=1.0
PKGREL=28
PKGREL=29
PACKAGE=libpve-common-perl

View File

@ -108,7 +108,7 @@ my $eval_int = sub {
my @ssh_opts = ('-c', 'blowfish', '-o', 'BatchMode=yes');
my @ssh_cmd = ('/usr/bin/ssh', @ssh_opts);
my @scp_cmd = ('/usr/bin/scp', @ssh_opts);
my @rsync_opts = ('-aH', '--delete', '--numeric-ids');
my @rsync_opts = ('-aHAX', '--delete', '--numeric-ids');
my @rsync_cmd = ('/usr/bin/rsync', @rsync_opts);
sub migrate {

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
libpve-common-perl (1.0-29) unstable; urgency=low
* AbsrtactMigrate: use rsync flags AX (preserve ACLs and xattr)
-- Proxmox Support Team <support@proxmox.com> Thu, 14 Jun 2012 09:08:11 +0200
libpve-common-perl (1.0-28) unstable; urgency=low
* added SectionConfig.pm, base class for Storage and Auth plugins.