Commit fd6ea9437443970415a22223613c1c90285573e8
1 parent
4eb91894
Exists in
master
and in
39 other branches
Fixed database creation with puppet
Showing
1 changed file
with
2 additions
and
6 deletions
Show diff stats
puppet/modules/colab/manifests/init.pp
... | ... | @@ -18,14 +18,10 @@ class colab ( |
18 | 18 | |
19 | 19 | include postgresql::server |
20 | 20 | |
21 | - postgresql::server::role { 'colab': | |
22 | - password_hash => postgresql_password('colab', 'colab'), | |
23 | - } | |
24 | - | |
25 | 21 | postgresql::server::db { 'colab': |
26 | 22 | user => 'colab', |
27 | - password => postgresql_password('colab', 'colab'), | |
28 | - owner => 'colab', | |
23 | + password => 'colab', | |
24 | + grant => 'all', | |
29 | 25 | } |
30 | 26 | |
31 | 27 | appdeploy::django { 'colab': | ... | ... |