aboutsummaryrefslogtreecommitdiff
path: root/build-arch-on-gce.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build-arch-on-gce.sh')
-rwxr-xr-xbuild-arch-on-gce.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/build-arch-on-gce.sh b/build-arch-on-gce.sh
index d1122e2..632586d 100755
--- a/build-arch-on-gce.sh
+++ b/build-arch-on-gce.sh
@@ -19,7 +19,7 @@ INSTANCE_ID=${RANDOM}
INSTANCE_NAME=archbuilder${INSTANCE_ID}
ZONE_NAME=us-central1-f
MACHINE_TYPE=n1-standard-2
-GIT_SOURCE_URI=https://github.com/GoogleCloudPlatform/compute-archlinux-image-builder.git
+GIT_SOURCE_URI=https://github.com/jeremyje/compute-archlinux-image-builder.git
SCRIPT_PARAMS="$*"
function GcloudNotConfiguredHelp() {
@@ -46,10 +46,10 @@ function PrintHelp() {
function DeployVm() {
echo "Creating Instance, ${INSTANCE_NAME}"
gcloud compute instances create ${INSTANCE_NAME} \
- --image debian-7-backports \
+ --image ubuntu-14-10 \
--machine-type ${MACHINE_TYPE} \
--zone ${ZONE_NAME} \
- --metadata-from-file startup-script=build-arch-on-gce-remote.sh \
+ --metadata-from-file startup-script=gcevm-script-build-arch.sh \
--metadata \
script-params="${SCRIPT_PARAMS}" \
instance-name="${INSTANCE_NAME}" \