as already announced over two months ago[0], remove the unofficial SheepDog plugin now completely. Besides that it was never fully supported in Proxmox VE one of its main developer and ex-maintainer declared it as abandoned[1], and thus just let's remove it, git allows to resurrect it any time if a wonder happens anyway. [0]: https://pve.proxmox.com/pipermail/pve-user/2019-March/170497.html [1]: http://lists.wpkg.org/pipermail/sheepdog/2019-March/068449.html Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
21 lines
400 B
Makefile
21 lines
400 B
Makefile
SOURCES= \
|
|
Plugin.pm \
|
|
DirPlugin.pm \
|
|
LVMPlugin.pm \
|
|
NFSPlugin.pm \
|
|
CIFSPlugin.pm \
|
|
ISCSIPlugin.pm \
|
|
CephFSPlugin.pm \
|
|
RBDPlugin.pm \
|
|
ISCSIDirectPlugin.pm \
|
|
GlusterfsPlugin.pm \
|
|
ZFSPoolPlugin.pm \
|
|
ZFSPlugin.pm \
|
|
DRBDPlugin.pm \
|
|
LvmThinPlugin.pm
|
|
|
|
.PHONY: install
|
|
install:
|
|
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/Storage/$$i; done
|
|
make -C LunCmd install
|