author | ymh <ymh.work@gmail.com> |
Mon, 03 Apr 2017 15:29:30 +0200 | |
changeset 529 | 5d9eacbd5794 |
parent 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 |
||
146
dc4d1cdc47e0
first implementation of handle install. Need refinement
ymh <ymh.work@gmail.com>
parents:
28
diff
changeset
|
19 |
# install handle |
150 | 20 |
if(hiera('sysconfig::params::install_handle', true)) { |
21 |
class { 'sysconfig::handle': } |
|
22 |
} |
|
146
dc4d1cdc47e0
first implementation of handle install. Need refinement
ymh <ymh.work@gmail.com>
parents:
28
diff
changeset
|
23 |
|
410 | 24 |
# install php |
25 |
class { 'sysconfig::php': }-> |
|
26 |
||
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
|
27 |
# 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
|
28 |
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
|
29 |
|
28 | 30 |
# install tomcat |
31 |
class { 'sysconfig::tomcat': } |
|
32 |
||
405
f239c8c5bb94
migrate to rdf4j (2.1.1) from sesame (4.1.1)
ymh <ymh.work@gmail.com>
parents:
353
diff
changeset
|
33 |
# install rdf4j |
f239c8c5bb94
migrate to rdf4j (2.1.1) from sesame (4.1.1)
ymh <ymh.work@gmail.com>
parents:
353
diff
changeset
|
34 |
class { 'sysconfig::rdf4j': }-> |
28 | 35 |
|
36 |
# install elasticsearch |
|
37 |
class { 'sysconfig::elasticsearch': }-> |
|
38 |
||
39 |
# install memcached |
|
40 |
class { 'sysconfig::memcached': }-> |
|
41 |
||
42 |
# install corpus |
|
43 |
class { 'sysconfig::corpus': }-> |
|
44 |
||
45 |
# mark first provision |
|
46 |
file { "/var/lib/puppet/state/first_run": |
|
47 |
ensure => present |
|
48 |
} |