mirror of
https://github.com/jiangcuo/pve-storage.git
synced 2025-08-26 17:26:59 +00:00

this adds the functions for listing the disks (mostly copied from the ceph code), checking if a disk is a valid blockdevice, if it is used/in a zfs pool/as an lvm pv, and an init function (just to add a gpt header; this is important if one wants to use a fresh disk for ceph journals) Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
10 lines
235 B
Makefile
10 lines
235 B
Makefile
|
|
|
|
.PHONY: install
|
|
install:
|
|
install -D -m 0644 Storage.pm ${DESTDIR}${PERLDIR}/PVE/Storage.pm
|
|
install -D -m 0644 Diskmanage.pm ${DESTDIR}${PERLDIR}/PVE/Diskmanage.pm
|
|
make -C Storage install
|
|
make -C API2 install
|
|
make -C CLI install
|