#!/bin/sh
# Report /vz disk space usage

unset VEID
. /etc/vz/vz.conf

# Exit in case of unset variable
set -u

df -k $VE_PRIVATE
