Commit 61f619ba by Stéphane Graber

Merge pull request #628 from rldleblanc/cap_clone_fix

Caps are getting lost when cloning an LXC.
parents 95c140ed d02ee577
...@@ -98,7 +98,7 @@ static int do_rsync(const char *src, const char *dest) ...@@ -98,7 +98,7 @@ static int do_rsync(const char *src, const char *dest)
s[l-2] = '/'; s[l-2] = '/';
s[l-1] = '\0'; s[l-1] = '\0';
execlp("rsync", "rsync", "-aH", s, dest, (char *)NULL); execlp("rsync", "rsync", "-aHX", s, dest, (char *)NULL);
exit(1); exit(1);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment