Forge Home

golang

A barebones Go installation

455,701 downloads

409,653 latest version

2.3 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 1.2.0 (latest)
  • 1.1.1
  • 1.1.0
  • 1.0.1
  • 1.0.0
  • 0.0.2
released Nov 17th 2013

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'dcoxall-golang', '1.0.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add dcoxall-golang
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install dcoxall-golang --version 1.0.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download
Tags: go, golang

Documentation

dcoxall/golang — version 1.0.0 Nov 17th 2013

Golang

Quickly and easily install the Go programming language with a customisable workspace and version.

Usage

In order to use this module do the following:

class { 'golang':
  version   => '1.1.2',
  workspace => '/usr/local/src/go',
}

This will install go 1.1.2 and setup your workspace in /usr/local/go. Your chosen workspace should include a bin, pkg and src directory. The golang module doesn't create these to avoid using the wrong permissions which can cause potential issues using commands like go get.

If you wish to add your own code into the golang workspace but not add the files directly the best method is to create a symlink as demonstrated below:

file { '/home/user/project':
  ensure => link,
  target => '/usr/local/src/go/src/project',
}

Your project can then be accessed by Go:

$ go test project

Additional Options

The golang module supports some additional options:

class { 'golang':
  arch => 'linux-amd64',
  download_dir => '/usr/local/src',
  download_url => 'https://company.intranet/downloads/golang.tar.gz',
}

arch

The arch option is a string which is used in conjunction with the default download_url. It is the portion of the url that points to the correct architecture specific download.

download_dir

download_dir is the location in which the golang tarball is downloaded to. This is configurable in case the default (/usr/local/src) is unavailable.

download_url

This represents the url in which to download the golang tarball. The default url is made up of version and arch from the official golang downloads.

Contributions

This module is fairly young and has only been tested on Debian. All contributions are welcome by forking the project and creating a pull request with your changes.

Roadmap

There are still additional features which would make this module better:

  1. Tests (tut, tut me for not doing them)
  2. The ability to remove go
  3. A Go project resource which would automatically symlink the directory?