Makefile: Name images/tarball after appliance name not hostname.
The reason being that when you are distributing an image you are likely distributing an general appliance, not a specific host so it makes sense that the image name be the name of the appliance and not, e.g., ln33. This can always be overriden on the command line or in a profile.
This commit is contained in:
parent
928dcf9e1c
commit
50a4a28567
12
Makefile
12
Makefile
|
@ -1,12 +1,12 @@
|
|||
CHROOT = $(CURDIR)/vabuild
|
||||
APPLIANCE ?= base
|
||||
HOSTNAME = $(APPLIANCE)
|
||||
RAW_IMAGE = $(HOSTNAME).img
|
||||
QCOW_IMAGE = $(HOSTNAME).qcow
|
||||
VMDK_IMAGE = $(HOSTNAME).vmdk
|
||||
XVA_IMAGE = $(HOSTNAME).xva
|
||||
LST_FILE = $(HOSTNAME)-packages.lst
|
||||
STAGE4_TARBALL = stage4/$(HOSTNAME)-stage4.tar.xz
|
||||
RAW_IMAGE = $(APPLIANCE).img
|
||||
QCOW_IMAGE = $(APPLIANCE).qcow
|
||||
VMDK_IMAGE = $(APPLIANCE).vmdk
|
||||
XVA_IMAGE = $(APPLIANCE).xva
|
||||
LST_FILE = $(APPLIANCE)-packages.lst
|
||||
STAGE4_TARBALL = stage4/$(APPLIANCE).tar.xz
|
||||
VIRTIO = NO
|
||||
TIMEZONE = UTC
|
||||
DISK_SIZE = 6.0G
|
||||
|
|
Loading…
Reference in New Issue