Forge Home

sap

SAP netweaver management module

7,670 downloads

6,553 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

  • 0.9.1 (latest)
  • 0.9.0
released Oct 22nd 2017
This version is compatible with:
  • , , ,

Start using this module

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

Add this module to your Puppetfile:

mod 'thbe-sap', '0.9.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add thbe-sap
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install thbe-sap --version 0.9.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

thbe/sap — version 0.9.1 Oct 22nd 2017

#sap

Build Status Puppet Forge

####Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with sap
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module

##Overview

The sap module provides packages, settings and other requirements for installing specific SAP products on this node.

##Module Description

This module takes care that the SAP recommendations for installing specific SAP products on the Linux operating system are fullfilled on the current node. The configuration is based on the corresponding SAP OSS notes describing the necessary configuration steps.

Keep in mind, this module is not related in any way to official SAP software distribution nor is it supported in any way by official SAP contracts. This is my private module to speed up the installation of SAP software in a controlled puppetized way, so absolutely no warranty at all!

##Setup

###What sap affects

  • local packages
  • local configuration files
  • local service configurations

###Beginning with sap

Include '::sap' is enough to get you up and running if the parameters point to proper values. Keep mind that all parameters point default to false, so using the module without parameters will not change much. If you wish to pass in parameters like which SAP software product will be installed on the node you should use something like this:

class { '::sap':
  cloudconnector => true,
}

##Usage

All interaction with the sap module can do be done through the main sap class. This means you can simply toggle the options in the sap class to get at the full functionality.

###I just want sap, what's the minimum I need?

include '::sap'

###I just want ABAP stack, JAVA stack and ADS on target node.

class { '::sap':
  abap => true,
  java => true,
  ads  => true,
}

##Reference

###Classes

  • sap: Main class, includes all the rest.
  • sap::install: Handles the packages.
  • sap::config: Handles the configuration file.
  • sap::service: Handles the alternative service link.

###Parameters

The following parameters are available in the sap module

####abap

Install prerequisites for an ABAP stack.

####java

Install prerequisites for an JAVA stack.

####ads

Install prerequisites for an Adobe Document Services stack.

####cloudconnector

Install prerequisites for the SAP Cloud Connector.

####router

Install prerequisites for the SAP Router.

####experimental

Use experimental features.

##Limitations

This module has been built on and tested against Puppet 4.0 and higher.

The module has been tested on:

  • RedHat Enterprise Linux 6/7

but should work on:

  • CentOS 6/7
  • Oracle Enterprise Linux 6/7
  • Scientific Linux 6/7

too. Testing on other platforms has been light and cannot be guaranteed.

##Development

If you like to add or improve this module, feel free to fork the module and send me a merge request with the modification.