Commit acc7cdea93b5a21e39c11d2eb4d9c419fb7c66c7
1 parent
6fcf510f
Exists in
master
and in
39 other branches
Set version of postgresql to 9.3 in puppet
Showing
1 changed file
with
6 additions
and
1 deletions
Show diff stats
puppet/modules/colab/manifests/init.pp
... | ... | @@ -16,9 +16,14 @@ class colab ( |
16 | 16 | include appdeploy::deps::lxml |
17 | 17 | include appdeploy::deps::postgresql |
18 | 18 | include colab::cronjobs |
19 | - | |
20 | 19 | include postgresql::server |
21 | 20 | |
21 | + class { 'postgresql::globals': | |
22 | + manage_package_repo => true, | |
23 | + version => '9.3', | |
24 | + before => Class['postgresql::server'], | |
25 | + } | |
26 | + | |
22 | 27 | postgresql::server::db { 'colab': |
23 | 28 | user => 'colab', |
24 | 29 | password => 'colab', | ... | ... |