]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
Caps are getting lost when cloning an LXC. Adding the -X parameter copies the extende... 628/head
authorRobert LeBlanc <rdleblanc@bluehost.com>
Thu, 13 Aug 2015 19:36:55 +0000 (13:36 -0600)
committerRobert LeBlanc <rdleblanc@bluehost.com>
Thu, 13 Aug 2015 19:36:55 +0000 (13:36 -0600)
src/lxc/bdev.c

index c6a8efc075539d2dde945614d0f837c66f36f4e2..ada395880e4d1a53c62142185a29680de2f5e1ab 100644 (file)
@@ -98,7 +98,7 @@ static int do_rsync(const char *src, const char *dest)
        s[l-2] = '/';
        s[l-1] = '\0';
 
-       execlp("rsync", "rsync", "-aH", s, dest, (char *)NULL);
+       execlp("rsync", "rsync", "-aHX", s, dest, (char *)NULL);
        exit(1);
 }