diff --git a/puppet/modules/colab/manifests/init.pp b/puppet/modules/colab/manifests/init.pp index 1d63895..0ff96ca 100644 --- a/puppet/modules/colab/manifests/init.pp +++ b/puppet/modules/colab/manifests/init.pp @@ -16,6 +16,18 @@ class colab ( include appdeploy::deps::postgresql include colab::cronjobs + include postgresql::server + + postgresql::server::role { 'colab': + password_hash => postgresql_password('colab', 'colab'), + } + + postgresql::server::db { 'colab': + user => 'colab', + password => postgresql_password('colab', 'colab'), + owner => 'colab', + } + appdeploy::django { 'colab': user => 'colab', directory => '/home/colab/colab/src', -- libgit2 0.21.2