40 lines
589 B
Makefile
40 lines
589 B
Makefile
|
all:
|
||
|
echo OK
|
||
|
|
||
|
enable-alma-8:
|
||
|
touch flags/alma-8
|
||
|
|
||
|
enable-alma-9:
|
||
|
touch flags/alma-9
|
||
|
|
||
|
enable-debian-12:
|
||
|
touch flags/debian-12
|
||
|
|
||
|
enable-ubuntu-2204:
|
||
|
touch flags/ubuntu-2204
|
||
|
|
||
|
enable-all: enable-alma-8 enable-alma-9 enable-debian-12 enable-ubuntu-2204
|
||
|
|
||
|
cleanup-flags:
|
||
|
rm -fv flags/*
|
||
|
|
||
|
create:
|
||
|
bash create-proxmox-cloudinit-images.sh
|
||
|
|
||
|
create-all: enable-all create
|
||
|
|
||
|
destroy-debian-12:
|
||
|
qm destroy 9000
|
||
|
|
||
|
destroy-alma-8:
|
||
|
qm destroy 9001
|
||
|
|
||
|
destroy-alma-9:
|
||
|
qm destroy 9002
|
||
|
|
||
|
destroy-ubuntu2204:
|
||
|
qm destroy 9003
|
||
|
|
||
|
destroy-all: destroy-debian-12 destroy-alma-8 destroy-alma-9 destroy-ubuntu2204
|
||
|
|