Commit ba4adaa799b94473e1b5a1e8f26e4629f6aded10

Authored by Sergio Oliveira
1 parent af35b895

Installing supervisor and creating colab user

puppet/modules/colab/manifests/init.pp
... ... @@ -6,4 +6,14 @@ class colab {
6 6 include locale
7 7 include timezone
8 8 include postfix
9   -}
  9 +
  10 + include supervisor
  11 +
  12 + include colab::requirements
  13 +
  14 + user { 'colab':
  15 + ensure => present,
  16 + managehome => true,
  17 + shell => '/bin/bash',
  18 + }
  19 +}
10 20 \ No newline at end of file
... ...
requirements.txt
... ... @@ -7,6 +7,9 @@ chardet==1.0.1
7 7 python-dateutil==1.5
8 8 django-cliauth==0.9
9 9  
  10 +gunicorn
  11 +gevent
  12 +
10 13 # Feedzilla (planet) and deps
11 14 https://bitbucket.org/seocam/feedzilla/get/tip.tar.gz # Temporarily work around
12 15 django-common
... ...