mirror of
https://git.proxmox.com/git/pve-installer
synced 2025-04-28 12:51:31 +00:00

Will be used for prompting the user to rename existing "rpool" ZFS pools, similar to what we do for an existing LVM "pve" volume group. Signed-off-by: Christoph Heiss <c.heiss@proxmox.com> Reviewed-by: Aaron Lauterer <a.lauterer@proxmox.com> Tested-by: Aaron Lauterer <a.lauterer@proxmox.com> [ TL: added a bit context for what this will be used and merge in the tests into this preparatory commit ] Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
27 lines
453 B
Makefile
27 lines
453 B
Makefile
all:
|
|
|
|
export PERLLIB=..
|
|
|
|
.PHONY: check
|
|
check: test-zfs-arc-max test-run-command test-parse-fqdn test-ui2-stdio test-zfs-get-pool-list
|
|
|
|
.PHONY: test-zfs-arc-max
|
|
test-zfs-arc-max:
|
|
./zfs-arc-max.pl
|
|
|
|
.PHONY: test-run-command
|
|
test-run-command:
|
|
./run-command.pl
|
|
|
|
.PHONY: test-parse-fqdn
|
|
test-parse-fqdn:
|
|
./parse-fqdn.pl
|
|
|
|
.PHONY: test-ui2-stdio
|
|
test-ui2-stdio:
|
|
./ui2-stdio.pl
|
|
|
|
.PHONY: test-zfs-get-pool-list
|
|
test-zfs-get-pool-list:
|
|
./zfs-get-pool-list.pl
|