like the LVM API, but return an array for the list, because we do not have nested data here and create a vg and thin lv with the name given and use the full size Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
8 lines
151 B
Makefile
8 lines
151 B
Makefile
|
|
SOURCES= LVM.pm\
|
|
LVMThin.pm
|
|
|
|
.PHONY: install
|
|
install:
|
|
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/API2/Disks/$$i; done
|