From 50a4a28567edebc91efd640736f9229c3c7c4ee5 Mon Sep 17 00:00:00 2001 From: Albert Hopkins Date: Sat, 21 Feb 2015 13:21:05 +0000 Subject: [PATCH] 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. --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 7e65ae0..0812194 100644 --- a/Makefile +++ b/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