From 9ab845ce01efd7b2cf899a03e28ea45570c20734 Mon Sep 17 00:00:00 2001 From: Nathan LeClaire Date: Tue, 26 Jul 2016 17:32:17 -0700 Subject: [PATCH] Fix missing slug issue Signed-off-by: Nathan LeClaire --- drivers/digitalocean/digitalocean.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/digitalocean/digitalocean.go b/drivers/digitalocean/digitalocean.go index fe9ff96301..4b748a0ce3 100644 --- a/drivers/digitalocean/digitalocean.go +++ b/drivers/digitalocean/digitalocean.go @@ -35,7 +35,7 @@ type Driver struct { const ( defaultSSHPort = 22 defaultSSHUser = "root" - defaultImage = "ubuntu-15-10-x64" + defaultImage = "15621816" // Ubuntu 15.10 x86_64 defaultRegion = "nyc3" defaultSize = "512mb" )