For the pvesm call use a wrapper and a --dry-run option to redirect to the correct API call. Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
7 lines
179 B
Makefile
7 lines
179 B
Makefile
|
|
SOURCES= Content.pm Status.pm Config.pm PruneBackups.pm
|
|
|
|
.PHONY: install
|
|
install:
|
|
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/API2/Storage/$$i; done
|