Instead of hard-coding the PROVIDERS for upload, add the

VAGRANT_PROVIDERS variable.  Right now, it defaults to only
vmware_desktop, virtualbox support is to follow at some point.

While here, fix the hashicorp URL: s/vagrant/atlas/, which
was result of a sed(1) replace (and my fault).

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Glen Barber 2015-06-27 23:03:28 +00:00
parent 02158ab011
commit 8c4b4cc3ba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=284897

View File

@ -23,6 +23,8 @@ SNAPSHOT_DATE!= date +-%Y-%m-%d-%H-%M
.endif
VAGRANT_TARGET:= ${OSRELEASE}${SNAPSHOT_DATE}.box
VAGRANT_PROVIDERS?= vmware_desktop
#VAGRANT_PROVIDERS+= virtualbox
vagrant-upload: ${VAGRANT_UPLOAD_TGTS}
@ -52,8 +54,8 @@ vagrant-do-package-vmware: vagrant-create-vmware-vmx vagrant-do-package
touch ${.OBJDIR}/${.TARGET}
atlas-create-upload:
.for PROVIDER in vmware_desktop virtualbox
/usr/local/bin/curl "https://vagrant.hashicorp.com/api/v1/box/${ATLAS_USERNAME}/${ATLAS_NAME}/version/${ATLAS_VERSION}/provider/${PROVIDER}/upload?access_token=${ATLAS_KEY}"
.for PROVIDER in ${VAGRANT_PROVIDERS}
/usr/local/bin/curl "https://atlas.hashicorp.com/api/v1/box/${ATLAS_USERNAME}/${ATLAS_NAME}/version/${ATLAS_VERSION}/provider/${PROVIDER}/upload?access_token=${ATLAS_KEY}"
.endfor
touch ${.OBJDIR}/${.TARGET}