-
Notifications
You must be signed in to change notification settings - Fork 36
/
Makefile
36 lines (27 loc) · 1.08 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
proxmox_storage_pool =
.PHONY: centos7 centos8 rocky8 rocky9 ubuntu2004 ubuntu2204 ubuntu2404 all
all: centos7 centos8 rocky8 rocky9 ubuntu2004 ubuntu2204
centos7:
packer init centos7/packer.pkr.hcl
packer build -var-file variables.pkrvars.hcl centos7/packer.pkr.hcl
centos8:
packer init centos8/packer.pkr.hcl
packer build -var-file variables.pkrvars.hcl centos8/packer.pkr.hcl
rocky8:
packer init rocky8/packer.pkr.hcl
packer build -var-file variables.pkrvars.hcl rocky8/packer.pkr.hcl
rocky9:
packer init rocky9/packer.pkr.hcl
packer build -var-file variables.pkrvars.hcl rocky9/packer.pkr.hcl
ubuntu2004:
packer init ubuntu2004/packer.pkr.hcl
packer build -var-file variables.pkrvars.hcl ubuntu2004/packer.pkr.hcl
ubuntu2204:
packer init ubuntu2204/packer.pkr.hcl
packer build -var-file variables.pkrvars.hcl ubuntu2204/packer.pkr.hcl
ubuntu2404:
packer init ubuntu2404/packer.pkr.hcl
packer build -var-file variables.pkrvars.hcl ubuntu2404/packer.pkr.hcl
almalinux9:
packer init almalinux9/packer.pkr.hcl
packer build -var-file variables.pkrvars.hcl almalinux9/packer.pkr.hcl