control-repo/site-modules/profile/manifests/db2_server.pp
Iristyle f992c8c96d Revert "include db2 class"
This reverts commit 1041362ee1.
2019-12-03 13:35:22 -06:00

19 lines
447 B
Puppet

# db2_server preofile
class profile::db2_server (
) {
db2::install { '11.1':
source => 'file:///media/db2/v11.1_linuxx64_dec.tar.gz',
components => [
'ACS',
'APPLICATION_DEVELOPMENT_TOOLS',
'DB2_SAMPLE_DATABASE ',
'BASE_CLIENT',
'BASE_DB2_ENGINE',
'JAVA_SUPPORT',
'SQL_PROCEDURES',
'COMMUNICATION_SUPPORT_TCPIP'
],
license_content => template('db2/license/trial.lic'),
}
}