#!/bin/sh

[ "$need_physical_tbox" = "true" ] && echo "$tbox_group" | grep -q "^vm-" && {
        echo "Please run this job on physical machine"
        exit 1
}

exit 0
