libvm: don't rsync $VMCHECK_INSTTREE

We pretty standardized on insttree/ being the installation tree, and
we don't actually support $VMCHECK_INSTTREE anymore.

Closes: #1032
Approved by: cgwalters
This commit is contained in:
Jonathan Lebon 2017-09-30 20:47:03 +00:00 committed by Atomic Bot
parent 5c25945dd3
commit 2c94b11b68

View File

@ -45,10 +45,6 @@ vm_rsync() {
fi
rsync -az --no-owner --no-group -e "$rsyncopts" \
--exclude .git/ . $VM:/var/roothome/sync
if test -n "${VMCHECK_INSTTREE:-}"; then
rsync -az --no-owner --no-group -e "$rsyncopts" \
${VMCHECK_INSTTREE}/ $VM:/var/roothome/sync/insttree/
fi
popd
fi
}