vzmigrate: be silent about disabled quota

Commit f9a2ec8c made vzmigrate skip all vzquota operations for ploop
case. It was done by setting DISK_QUOTA=no which is perfectly fine,
except for the messages printed by vzmigrate saying "skipping quota
migration" (in case -v -v is specified).

We could guard those messages by enclosing them in

	if [ "$PLOOP" != "yes" ]; then
		...
	fi

But it's easier just to remove those.

Signed-off-by: Kir Kolyshkin <kir@openvz.org>
1 file changed