2024-01-21 03:52:19 +02:00
|
|
|
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
|
|
|
|
|
2024-05-05 05:27:58 +03:00
|
|
|
enable-ubuntu-2404:
|
|
|
|
touch flags/ubuntu-2404
|
|
|
|
|
|
|
|
enable-all: enable-alma-8 enable-alma-9 enable-debian-12 enable-ubuntu-2204 enable-ubuntu-2404
|
2024-01-21 03:52:19 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2024-05-05 05:27:58 +03:00
|
|
|
destroy-ubuntu2404:
|
|
|
|
qm destroy 9005
|
|
|
|
|
|
|
|
destroy-all: destroy-debian-12 destroy-alma-8 destroy-alma-9 destroy-ubuntu2204 destroy-ubuntu2404
|
2024-01-21 03:52:19 +02:00
|
|
|
|