Initial commit

This commit is contained in:
Colmaris 2019-02-19 12:13:28 +01:00
commit 8910dc207d
14 changed files with 388 additions and 0 deletions

7
source/openvz Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
if [ -d "/var/lib/vz" ];then
df -h /var/lib/vz | awk '{ a = $5} END {print a}';
else
echo "Not Installed";
fi