Update to Go 1.6 & Debian 7

This commit is contained in:
Darren Coxall
2016-07-14 10:39:14 +01:00
parent 98d1646285
commit 56a553d9a7
4 changed files with 5 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
stage { "prepare":
before => Stage["main"],
}
class setup {
exec { "update-aptitude":
command => "/usr/bin/apt-get update -y",
}
}
class {
"setup":
stage => prepare;
"golang":;
}