]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - release/Makefile.gce
Fix multiple vulnerabilities of ntp.
[FreeBSD/releng/10.2.git] / release / Makefile.gce
1 #
2 # $FreeBSD$
3 #
4 #
5 # Makefile for uploading Google Compute Engine disk images.
6 #
7
8 GCE_IMG?=               ${.OBJDIR}/gce.raw
9 GCE_UPLOAD_TGTS=        gce-check-depends \
10                         gce-do-package \
11                         gce-do-upload
12 # I do not yet have a better way to deal with the "must be run interactively"
13 # thing, so this is a fail-safe "do not do anything."
14 .if !defined(GCE_LOGIN_SKIP) || empty(GCE_LOGIN_SKIP)
15 GCE_UPLOAD_TGTS=        gce-do-login
16 .endif
17 CLEANFILES+=            ${GCE_UPLOAD_TGTS}
18
19 GCE_BUCKET?=
20
21 .if ${BRANCH} == "STABLE" || ${BRANCH} == "CURRENT" || ${BRANCH} == "PRERELEASE"
22 SNAPSHOT_DATE!=         date +-%Y-%m-%d
23 .endif
24
25 # Really?  Uppercase characters are not allowed?  Sigh...
26 # And don't even get me started on the '.'.
27 GCE_TARGET:=            ${OSRELEASE:S,.raw,,:tl:S,.,-,g}${SNAPSHOT_DATE}
28
29 gce-upload:             ${GCE_UPLOAD_TGTS}
30
31 gce-check-depends:
32 .for VAR in _BUCKET
33 . if !defined(GCE${VAR}) || empty(GCE${VAR})
34         @echo "Variable GCE${VAR} cannot be empty."
35         @false
36 . endif
37 .endfor
38 .if !exists(/usr/local/bin/gcutil)
39 . if !exists(${PORTSDIR}/net/google-cloud-sdk/Makefile)
40 .  if !exists(/usr/local/sbin/pkg-static)
41         env ASSUME_ALWAYS_YES=yes pkg bootstrap -yf
42 .  endif
43         env ASSUME_ALWAYS_YES=yes pkg install -y net/google-cloud-sdk
44 . else
45         make -C ${PORTSDIR}/net/google-cloud-sdk BATCH=1 all install clean
46 . endif
47 .endif
48
49 gce-do-package:
50         @# Yes, really...  Sigh.
51         cd ${.OBJDIR} && mv gce.raw disk.raw
52         cd ${.OBJDIR} && tar --format=gnutar -zcf \
53                 ${GCE_TARGET:S,${.OBJDIR}/,,}.tar.gz disk.raw
54         cd ${.OBJDIR} && mv disk.raw gce.raw
55         touch ${.OBJDIR}/${.TARGET}
56
57 gce-do-login:
58         @echo "This requires human interaction, which is not yet supported."
59         @true
60
61 gce-do-upload:
62         @# Fallthrough in case the bucket already exists.
63         /usr/local/bin/gsutil mb gs://${GCE_BUCKET} || true
64         /usr/local/bin/gsutil cp ${.OBJDIR}/${GCE_TARGET}.tar.gz \
65                 gs://${GCE_BUCKET}/
66         /usr/local/bin/gcutil addimage ${GCE_TARGET} \
67                 gs://${GCE_BUCKET}/${GCE_TARGET}.tar.gz
68         touch ${.OBJDIR}/${.TARGET}
69