Forge Home

networker

Installs and configures the EMC NetWorker

13,785 downloads

10,747 latest version

4.1 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.2 (latest)
  • 1.1.0
  • 1.0.1
  • 1.0.0
released Nov 9th 2015
This version is compatible with:
  • Puppet Enterprise 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 2.7.0 < 5.0.0
  • , Debian,

Start using this module

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

Add this module to your Puppetfile:

mod 'genebean-networker', '1.1.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add genebean-networker
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install genebean-networker --version 1.1.2

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

genebean/networker — version 1.1.2 Nov 9th 2015

Build Status Puppet Forge GitHub tag

networker

Table of Contents

  1. Overview
  2. Setup
  3. Usage
  4. Parameters
  5. Limitations - OS compatibility, etc.
  6. Development
  7. License

Overview

This module installs the EMC NetWorker backup client and/or server. It is assumed that the installation packages are available via a repository the client has access to. It also manages the servers file.

Setup

What networker affects

  • the lgtoclnt and lgtoman packages
  • the content in /nsr/res/servers
  • the service networker

Setup Requirements

An assumption is made that you have setup a private repository to hold the packages for installing the NetWorker client.

Beginning with networker

Once you have a repo setup all you have to do is include networker in your manifest somewhere. You can, optionally, set the servers that are allowd to access the client via a parameter or via the file backend to hiera.

Usage

Basic usage:

include networker

Set the servers allowed to access the client:

class { 'networker':
  servers => ['server1.example.com', 'server2.example.com'],
}

Pull the file representing /nsr/res/servers from hiera:

class { 'networker':
  servers_file   => 'hiera',
}

Parameters

Package Installation

install_client

Installs the Networker client packages "lgtoclnt", "lgtoman"
Default: true
Hiera parameter: networker::install::install_client

install_console

Installs the Networker console package "lgtonmc"
Default: false
Hiera parameter: `networker::install::install_console``

install_nmda

Installs the Networker Module for Databases and Applications package "lgtonmda"
Default: false
Hiera parameter: networker::install::install_nmda

install_sap

Installs the Networker Module for SAP package "lgtonmsap"
Default: false
Hiera parameter: networker::install::install_sap

install_server

Installs the Networker server package "lgtoserv"
Default: false
Hiera parameter: networker::install::install_server

install_storagenode

Installs the Networker storagenode package "lgtonode"
Default: false
Hiera parameter: networker::install::install_storagenode

version_client

Sets the version of the client to install.
Default: present
Hiera parameter: networker::install::version_client

version_console

Sets the version of the console to install.
Default: present
Hiera parameter: networker::install::version_console

version_nmda

Sets the version of the nmda module to install.
Default: present
Hiera parameter: networker::install::version_nmda

version_sap

Sets the version of the sap module to install.
Default: present
Hiera parameter: networker::install::version_sap

version_server

Sets the version of the server to install.
Default: present
Hiera parameter: networker::install::version_server

version_storagenode

Sets the version of the storagenode to install.
Default: present
Hiera parameter: networker::install::version_storagenode

Config Settings

connection_portrange

Sets the system's connection ports to the ranges specified.
Type: String
Default: 0-0

servers

The servers that should be entered into /nsr/res/servers
Type: array
Default: []

servers_file

Determines where the content for the servers file comes from. Valid values are 'template' and 'hiera'.

  • template: takes the array passed to $servers and uses it to construct /nsr/res/servers.
  • hiera: takes advantage of the file backend for hiera and looks for the specified file there (see servers_file_name).

Type: String
Default: 'template'

servers_file_name

The name of the file in hiera that contains the desired contents of /nsr/res/servers
Type: String
Default: 'networker_servers'

service_portrange

Sets the system's service ports to the ranges specified.
Type: String
Default: 7937-9936

Limitations

This should work on the RedHat and Debian families of OS's. Additional support is welcomed, just submit an issue with the details. Support for Windows is planned for a future release.

Development

Pull requests are welcomed! Many thanks to Sebastian Ickler for adding features beyond the client setup to this module. If you add any code please try to make sure it will only be executed on OS's that support it.

License

This is released under the New BSD / BSD 3 Clause license. A copy of the license can be found in the root of the module.