Hi there,
don't know if it's a bug or a feature But if you use vzmigrate it copies the vpsid.conf file but not the special files *.start,*.stop,*.mount and *.umount.
I think something like
for ext in mount umount start stop
do
if [ -e "$confdir/$VEID.$ext" ]; then
if ! $SCP "$confdir/$VEID.$ext" "root@$host:$confdir/$VEID.$ext" &> $out; then
log 1 "Failed to copy $VEID.$ext"
exit $MIG_ERR_COPY
fi
fi
done
should be added to vzmigrate. What do you think?
PS: The migration feature is awesome! Thanks a lot!