Merge pull request #526 from Azendale/master

Change lxc-clone to use 'rsync -aH' instead of just 'rsync -a'
This commit is contained in:
Stéphane Graber 2015-05-25 11:06:07 -04:00
commit 378da5aa9f

View File

@ -94,7 +94,7 @@ static int do_rsync(const char *src, const char *dest)
s[l-2] = '/';
s[l-1] = '\0';
execlp("rsync", "rsync", "-a", s, dest, (char *)NULL);
execlp("rsync", "rsync", "-aH", s, dest, (char *)NULL);
exit(1);
}