From 53660ea4280cf15d93f9924e6bb72ed8236978b8 Mon Sep 17 00:00:00 2001 From: Darren Coxall Date: Wed, 8 May 2013 09:04:25 +0100 Subject: [PATCH] Updated to demonstrate use using go1.1rc2 --- README.md | 2 +- manifests/init.pp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 00ef848..6749333 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ hello ``` ## Choosing golang version -This repo is hardcoded to use the most recent version at the time of writing (1.1rc1). If you want to use another version simply +This repo is hardcoded to use the most recent version at the time of writing (1.1rc2). If you want to use another version simply change the `$version` parameter in `manifests/init.pp`. The version string is taken from the [golang downloads list](https://code.google.com/p/go/downloads/list). Once changed you can either call `vagrant up` if you haven't already setup the vagrant box or `vagrant provision` if the machine is already up. diff --git a/manifests/init.pp b/manifests/init.pp index d77fbfc..03771ae 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -1,3 +1,3 @@ class { "golang": - version => "1.1rc1" + version => "1.1rc2" }