Skip to content

Commit

Permalink
Use Go 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoxall committed Oct 1, 2014
1 parent 3baff19 commit 3debdcf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ hello
```

## Choosing golang version
This repo is hardcoded to use 1.3.1 although this can easily be changed after cloning. If you want to use another version simply
This repo is hardcoded to use 1.3.3 although this can easily be changed after cloning. 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](http://golang.org/dl/). 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.
Expand Down
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class { "golang":
version => "1.3.1"
version => "1.3.3"
}
2 changes: 1 addition & 1 deletion modules/golang/manifests/init.pp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class golang ( $version = "1.3.1" ) {
class golang ( $version = "1.3.3" ) {

exec { "download-golang":
command => "/usr/bin/wget --no-check-certificate -O /usr/local/src/go$version.linux-amd64.tar.gz http://golang.org/dl/go$version.linux-amd64.tar.gz",
Expand Down

0 comments on commit 3debdcf

Please sign in to comment.