Forge Home

nssm

Manages nssm with Puppet

8,882 downloads

7,203 latest version

4.6 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.1.0 (latest)
  • 1.0.2
  • 1.0.1
  • 1.0.0
released Sep 1st 2017
This version is compatible with:
  • Windows

Start using this module

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

Add this module to your Puppetfile:

mod 'ktreese-nssm', '1.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add ktreese-nssm
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install ktreese-nssm --version 1.1.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

Documentation

ktreese/nssm — version 1.1.0 Sep 1st 2017

nssm

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful

Overview

This module contains a couple of defined types:

  • nssm::install install a service
  • nssm::set set the parameters for that service

Installing NSSM

This will obviously require NSSM to be installed. If you need to install nssm, you may optionally declare the nssm class:

include nssm

Note, however, that the nssm class is simply declaring the windows::nssm class, which already does an excellent job of downloading and installing nssm, so understand counsyl/windows as a dependency to using my nssm class.

If you already have nssm installed, a default path to the nssm exe is assumed as C:\Program Files\nssm-2.24\win64. This may be overridden if your PATH differs by supplying nssm_path as an attribute to the nssm:install and nssm::set defined types.

Module Description

  # Install the service
  nssm::install { 'Jenkins_Agent':
    ensure       => present,
    program      => 'C:\Program Files\Java\jdk1.7.0_79\bin\java.exe',
    service_name => 'Jenkins_Agent',
  }
  # Service Management
  nssm::set { 'Jenkins_Agent':
    service_user        => 'LocalSystem',
    service_interactive => true,
    create_user         => false,
    app_parameters      => "-jar C:\swarm-jar-with-dependencies.jar -mode exclusive -executors 8 -username jenkins -password password -master http://localhost:8080 -labels windows -fsroot C:\opt\ci",
    require             => Nssm::Install['Jenkins_Agent'],
  }