Forge Home

chocolateyserver

This module install and manage a Chocolatey.Server in Windows environment.

7,189 downloads

6,185 latest version

5.0 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.0.1 (latest)
  • 1.0.0
  • 0.5.0 (deleted)
  • 0.4.0
released May 2nd 2018
This version is compatible with:
  • Puppet Enterprise 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 4.7.0 < 6.0.0

Start using this module

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

Add this module to your Puppetfile:

mod 'tuto-chocolateyserver', '1.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add tuto-chocolateyserver
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install tuto-chocolateyserver --version 1.0.1

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

Documentation

tuto/chocolateyserver — version 1.0.1 May 2nd 2018

chocolateyserver

This is the first release of a puppet module that allow you to easily install a simple Chocolatey.Server on Windows 2012 R2 and 2016 servers.

The installation workflow is 100% based on the setup steps that you can find on the official Chocolatey.Server website (https://chocolatey.org/docs/how-to-set-up-chocolatey-server)

Table of Contents

  1. Description
  2. Setup - The basics of getting started with chocolateyserver
  3. Limitations - OS compatibility, etc.

Description

This is the first release of a puppet module that allow you to easilly install a simple Chocolatey.Server on Windows 2012 R2 and 2016 servers with default configurations.

You can provide a listening port with parameter "port". By default, it's 8080.

Setup

Setup Requirements

Official Chocolatey.Server requirements :

  • 50GB of free space for where ever you will put packages.
  • At least 8GB RAM, but more if you can.
  • Ability to set up an IIS site and unblock website ports.
  • No IIS site for WSUS administration on the same server.
  • If you can ensure your server is up to date with all of the Windows Updates, you will move through this process quite a bit quicker.

Beginning with chocolateyserver

Just call it in your node declaration.

include chocolateyserver

Default port is 8080. Or you can specify a special port by declaring chocolateyserver class like :

class{ 'chocolateyserver':
    port => 5555,
}

Limitations

This module works only on windows 2012 R2 and Windows 2016.