git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/site-modules/profile/manifests/db2_server.pp
blob: cb4f00a48916d602a7d569bed1a233a4b1bd32bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# db2_server preofile
class profile::db2_server (
) {
  include db2
  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'),
  }
}