creates/lists systemd mount units for /mnt/pve/.* filetypes allowed are ext4 and xfs for now mount with /dev/disk/by-uuid Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
9 lines
167 B
Makefile
9 lines
167 B
Makefile
|
|
SOURCES= LVM.pm\
|
|
LVMThin.pm\
|
|
Directory.pm
|
|
|
|
.PHONY: install
|
|
install:
|
|
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/API2/Disks/$$i; done
|