author | ymh <ymh.work@gmail.com> |
Tue, 08 Nov 2016 18:23:01 +0100 | |
changeset 405 | f239c8c5bb94 |
parent 353 | bf1bc6b08c46 |
child 410 | 240ca282331d |
permissions | -rw-r--r-- |
28 | 1 |
include sysconfig |
2 |
||
3 |
# params |
|
4 |
class { 'sysconfig::params': } -> |
|
5 |
||
6 |
# upgrade system |
|
7 |
class { 'sysconfig::sys_upgrade': }-> |
|
8 |
||
9 |
# install mariadb |
|
150 | 10 |
class { 'sysconfig::mariadb': } |
28 | 11 |
|
12 |
# install packages |
|
13 |
class { 'sysconfig::packages': }-> |
|
14 |
||
15 |
# install apache |
|
16 |
class { 'sysconfig::apache': } |
|
17 |
||
18 |
# install php |
|
19 |
class { 'sysconfig::php': } |
|
20 |
||
146
dc4d1cdc47e0
first implementation of handle install. Need refinement
ymh <ymh.work@gmail.com>
parents:
28
diff
changeset
|
21 |
# install handle |
150 | 22 |
if(hiera('sysconfig::params::install_handle', true)) { |
23 |
class { 'sysconfig::handle': } |
|
24 |
} |
|
146
dc4d1cdc47e0
first implementation of handle install. Need refinement
ymh <ymh.work@gmail.com>
parents:
28
diff
changeset
|
25 |
|
353
bf1bc6b08c46
correct provisioning to install drush and correct config files + module definition for menu access problem
ymh <ymh.work@gmail.com>
parents:
150
diff
changeset
|
26 |
# install drupal |
bf1bc6b08c46
correct provisioning to install drush and correct config files + module definition for menu access problem
ymh <ymh.work@gmail.com>
parents:
150
diff
changeset
|
27 |
class { 'sysconfig::drupal': } |
bf1bc6b08c46
correct provisioning to install drush and correct config files + module definition for menu access problem
ymh <ymh.work@gmail.com>
parents:
150
diff
changeset
|
28 |
|
28 | 29 |
# install tomcat |
30 |
class { 'sysconfig::tomcat': } |
|
31 |
||
405
f239c8c5bb94
migrate to rdf4j (2.1.1) from sesame (4.1.1)
ymh <ymh.work@gmail.com>
parents:
353
diff
changeset
|
32 |
# install rdf4j |
f239c8c5bb94
migrate to rdf4j (2.1.1) from sesame (4.1.1)
ymh <ymh.work@gmail.com>
parents:
353
diff
changeset
|
33 |
class { 'sysconfig::rdf4j': }-> |
28 | 34 |
|
35 |
# install elasticsearch |
|
36 |
class { 'sysconfig::elasticsearch': }-> |
|
37 |
||
38 |
# install memcached |
|
39 |
class { 'sysconfig::memcached': }-> |
|
40 |
||
41 |
# install corpus |
|
42 |
class { 'sysconfig::corpus': }-> |
|
43 |
||
44 |
# mark first provision |
|
45 |
file { "/var/lib/puppet/state/first_run": |
|
46 |
ensure => present |
|
47 |
} |