Puppet Class: db2_profile

Inherited by:
db2_profile::database
Defined in:
manifests/init.pp

Summary

Common variables

Overview

db2_profile::db2_profile

See the file “LICENSE” for the full license governing this code.

Parameters:

  • location (String[1])

    The locatin where the DB2 sofware is or will be installed.

  • source (Stdlib::Absolutepath)

    The location of the DB2 software. Here is an example on how to use this:

    class { '::db2_install::...':
      ...
      source => '/software',
      ...
    }
    
  • version (Db2_Install::Version)

    The version to be installed. Here is an example on how to use this:

    class { '::db2_install::software':
      ...
      version => '11.0.0.0',
      ...
    }
    


31
32
33
34
35
# File 'manifests/init.pp', line 31

class db2_profile (
  String[1] $location,
  Stdlib::Absolutepath $source,
  Db2_Install::Version $version,
) {}