From: Dietmar Maurer Date: Thu, 14 Jun 2012 07:08:48 +0000 (+0200) Subject: use rsync flags AX (preserve ACLs and xattr) X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=commitdiff_plain;h=36ac0df3f36bbaae3fed13b7db4039b2eb1741b2 use rsync flags AX (preserve ACLs and xattr) --- diff --git a/Makefile b/Makefile index 0f5868f..d9f1ac7 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ RELEASE=2.1 VERSION=1.0 -PKGREL=28 +PKGREL=29 PACKAGE=libpve-common-perl diff --git a/data/PVE/AbstractMigrate.pm b/data/PVE/AbstractMigrate.pm index 3425fa1..ccfcfb6 100644 --- a/data/PVE/AbstractMigrate.pm +++ b/data/PVE/AbstractMigrate.pm @@ -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 { diff --git a/debian/changelog b/debian/changelog index ce85e0d..cc71cc6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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.