add API for LVM management

currently only list and create,
the list is in a format so that we can use it in an extjs tree

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak
2018-07-30 10:26:00 +02:00
committed by Dietmar Maurer
parent 8cccb3447b
commit 8b6842caa2
4 changed files with 192 additions and 1 deletions

6
PVE/API2/Disks/Makefile Normal file
View File

@ -0,0 +1,6 @@
SOURCES= LVM.pm
.PHONY: install
install:
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/API2/Disks/$$i; done