Commit ba4adaa799b94473e1b5a1e8f26e4629f6aded10
1 parent
af35b895
Exists in
master
and in
39 other branches
Installing supervisor and creating colab user
Showing
2 changed files
with
14 additions
and
1 deletions
Show diff stats
puppet/modules/colab/manifests/init.pp
@@ -6,4 +6,14 @@ class colab { | @@ -6,4 +6,14 @@ class colab { | ||
6 | include locale | 6 | include locale |
7 | include timezone | 7 | include timezone |
8 | include postfix | 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 | \ No newline at end of file | 20 | \ No newline at end of file |
requirements.txt
@@ -7,6 +7,9 @@ chardet==1.0.1 | @@ -7,6 +7,9 @@ chardet==1.0.1 | ||
7 | python-dateutil==1.5 | 7 | python-dateutil==1.5 |
8 | django-cliauth==0.9 | 8 | django-cliauth==0.9 |
9 | 9 | ||
10 | +gunicorn | ||
11 | +gevent | ||
12 | + | ||
10 | # Feedzilla (planet) and deps | 13 | # Feedzilla (planet) and deps |
11 | https://bitbucket.org/seocam/feedzilla/get/tip.tar.gz # Temporarily work around | 14 | https://bitbucket.org/seocam/feedzilla/get/tip.tar.gz # Temporarily work around |
12 | django-common | 15 | django-common |