git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/site-modules/profile
diff options
context:
space:
mode:
authormail_redacted_for_web 2019-11-30 09:19:21 +1030
committermail_redacted_for_web 2019-11-30 09:19:21 +1030
commit58103e4ef4478f7c997c769a7111ca48cdf269eb (patch)
treed60697f1fe813e2dd3c9516a1d735fda8384be82 /site-modules/profile
parentbfb2d7a1828b22f7f7e5d4955743ccd9f08147db (diff)
downloadcontrol-repo-template-58103e4ef4478f7c997c769a7111ca48cdf269eb.tar.bz2
add db2_server role and profile
Diffstat (limited to 'site-modules/profile')
-rw-r--r--site-modules/profile/manifests/db2_server.pp18
1 files changed, 18 insertions, 0 deletions
diff --git a/site-modules/profile/manifests/db2_server.pp b/site-modules/profile/manifests/db2_server.pp
new file mode 100644
index 0000000..60e83f8
--- /dev/null
+++ b/site-modules/profile/manifests/db2_server.pp
@@ -0,0 +1,18 @@
+# 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'),
+ }
+}