It is possible to synchronise a volume to an other node in a defined interval. So if a node fail there will be an copy of the volumes from a VM on an other node. With this copy it is possible to start the VM on this node.
10 lines
208 B
Makefile
10 lines
208 B
Makefile
SOURCES=pvesm.pm pvesr.pm
|
|
|
|
.PHONY: install
|
|
install: ${SOURCES}
|
|
install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE/CLI
|
|
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/CLI/$$i; done
|
|
|
|
|
|
clean:
|