]> git.proxmox.com Git - pve-common.git/commitdiff
use rsync flags AX (preserve ACLs and xattr)
authorDietmar Maurer <dietmar@proxmox.com>
Thu, 14 Jun 2012 07:08:48 +0000 (09:08 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Thu, 14 Jun 2012 07:08:48 +0000 (09:08 +0200)
Makefile
data/PVE/AbstractMigrate.pm
debian/changelog

index 0f5868f32c2d173cdf38220624769553c2018808..d9f1ac7d624622601b4d7d338b06844ad5e634d7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 RELEASE=2.1
 
 VERSION=1.0
-PKGREL=28
+PKGREL=29
 
 PACKAGE=libpve-common-perl
 
index 3425fa1f97877e3b325865c6d5afc9b9dd8c8b48..ccfcfb69b2d716d2edc911b0f2b20c8ff59d99b0 100644 (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 {
index ce85e0d38aa5a96dc412a0cfeb7c0b1b24c756de..cc71cc698a811f57b9d9a4d3f3c35cb157fb4554 100644 (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.