Hi,

Thanks for the patch, I have a couple questions about it, see below:

Markus Neubauer wrote:
--- /usr/sbin/vserver-copy.dpk-dist     2006-08-19 17:05:45.000000000 +0200
+++ /usr/sbin/vserver-copy      2006-08-19 17:05:45.000000000 +0200
@@ -295,7 +295,9 @@
info "Syncing directories"
 # trailing slashes very important in the rsync!
-if ! rsync -avxz $rsflag $shcmd $vroot/ $dhost$colon$target/; then
+# -H very important =~ keep hardlinks (otherwise you have 2/TWO files)
+# --nummeric-ids very important =~ (run suse on debian will trash owner ids
etc.)
+if ! rsync -avxzH --numeric-ids $rsflag $shcmd $vroot/
$dhost$colon$target/; then
        error 1 "rsync failed"
 fi


what does the comment that says "run suse on debian will trash..." mean? Is that supposed to say "run on debian will trash..."?

@@ -325,12 +327,12 @@
        cat << EOF > $tmpf
 # /etc/hosts (automatically generated by $me)
-127.0.0.1 localhost
+127.0.0.2       localhost.localdomain  localhost
 $ip    $newname.$domain        $newname
# The following lines are desirable for IPv6 capable hosts -::1 ip6-localhost ip6-loopback
+::2     ip6-localhost ip6-loopback
 fe00::0 ip6-localnet
 ff00::0 ip6-mcastprefix
 ff02::1 ip6-allnodes

What is this?

micah


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to