|
1 | 1 | from __future__ import with_statement
|
2 |
| -from package_lists import * |
3 | 2 | from fabric.api import *
|
4 | 3 | from fabric.colors import green
|
5 | 4 | from fabric.contrib.console import confirm
|
| 5 | +from fabric.contrib.files import exists |
| 6 | +from package_lists import * |
| 7 | +import os |
6 | 8 |
|
7 | 9 |
|
8 | 10 |
|
9 |
| -def prepare_host(): |
10 |
| - run('pip install -U pip') |
11 |
| - |
| 11 | +@task |
12 | 12 | def deploy():
|
13 |
| - pass |
14 |
| -# run('git clone https://github.com/rascalmicro/rascal2-build.git') |
15 |
| -# with cd('rascal2-build'): |
16 |
| -# run('python build-rascal2.py') |
17 |
| - |
| 13 | + set_hostname() |
18 | 14 | set_passwords()
|
19 | 15 | disable_bonescript()
|
20 | 16 | remove_unneeded_debian_packages()
|
21 | 17 | install_debian_packages()
|
22 | 18 | install_python_modules()
|
23 |
| - #install_rascal_software() |
24 |
| - #install_config_files() |
25 |
| - #allow_uwsgi_to_control_supervisor() |
26 |
| - #set_zsh_as_default_shell() |
| 19 | + install_rascal_software() |
| 20 | + install_config_files() |
| 21 | + allow_uwsgi_to_control_supervisor() |
| 22 | + set_zsh_as_default_shell() |
| 23 | + |
| 24 | +def set_hostname(): |
| 25 | + prompt('Enter hostname: ', 'hostname', default='rascal2') |
| 26 | + print(green('Setting hostname to: ' + env.hostname)) |
| 27 | + run('echo ' + env.hostname + ' > /etc/hostname') |
27 | 28 |
|
28 | 29 | def set_passwords():
|
29 | 30 | print(green('Setting passwords for root and debian accounts'))
|
@@ -55,43 +56,41 @@ def remove_unneeded_debian_packages():
|
55 | 56 | run('apt-get remove -y ' + package, pty=False)
|
56 | 57 |
|
57 | 58 | def install_rascal_software():
|
58 |
| - greenprint('Installing Rascal editor . . .') |
59 |
| - if not (os.path.isdir('/var/www/editor')): |
60 |
| - sh.git.clone('https://github.com/rascalmicro/red.git', '/var/www/editor') |
61 |
| - if not (os.path.isdir('/var/www/public')): |
62 |
| - sh.git.clone('https://github.com/rascalmicro/demos.git', '/var/www/public') |
63 |
| - if not os.path.isdir('/var/log/uwsgi'): |
64 |
| - sh.mkdir('/var/log/uwsgi') |
65 |
| - sh.touch('/var/log/uwsgi/public.log') |
66 |
| - sh.touch('/var/log/uwsgi/emperor.log') |
67 |
| - sh.touch('/var/log/uwsgi/editor.log') |
68 |
| - sh.chown('-R', 'www-data', '/var/log/uwsgi') |
69 |
| - sh.chgrp('-R', 'www-data', '/var/log/uwsgi') |
| 59 | + print(green('Installing Rascal editor . . .')) |
| 60 | + if not exists('/var/www/editor'): |
| 61 | + run('git clone https://github.com/rascalmicro/red.git /var/www/editor') |
| 62 | + if not exists('/var/www/public'): |
| 63 | + run('git clone https://github.com/rascalmicro/demos.git /var/www/public') |
| 64 | + if not exists('/var/log/uwsgi'): |
| 65 | + run('mkdir /var/log/uwsgi') |
| 66 | + run('touch /var/log/uwsgi/public.log') |
| 67 | + run('touch /var/log/uwsgi/emperor.log') |
| 68 | + run('touch /var/log/uwsgi/editor.log') |
| 69 | + run('chown -R www-data /var/log/uwsgi') |
| 70 | + run('chgrp -R www-data /var/log/uwsgi') |
70 | 71 |
|
71 | 72 | if os.path.isdir('/var/www/editor/static/codemirror'):
|
72 |
| - sh.rm('-rf', '/var/www/editor/static/codemirror') |
73 |
| - sh.wget('https://github.com/marijnh/CodeMirror/archive/4.2.0.tar.gz') |
74 |
| - sh.tar('xzvf', '4.2.0.tar.gz') |
75 |
| - sh.mv('CodeMirror-4.2.0/', '/var/www/editor/static/codemirror') |
| 73 | + run('rm -rf /var/www/editor/static/codemirror') |
| 74 | + run('wget https://github.com/marijnh/CodeMirror/archive/4.2.0.tar.gz') |
| 75 | + run('tar xzvf 4.2.0.tar.gz') |
| 76 | + run('mv CodeMirror-4.2.0/ /var/www/editor/static/codemirror') |
76 | 77 |
|
77 |
| - sh.systemctl('enable', 'nginx.service') |
| 78 | + run('systemctl enable nginx.service') |
78 | 79 |
|
79 | 80 | def install_config_files():
|
80 |
| - greenprint('Copying over config files . . .') |
81 |
| - sh.mkdir('-p', '/etc/uwsgi/vassals') |
82 |
| - sh.cp('./emperor.ini', '/etc/uwsgi/emperor.ini') |
83 |
| - sh.cp('./editor.ini', '/etc/uwsgi/vassals/editor.ini') |
84 |
| - sh.cp('./public.ini', '/etc/uwsgi/vassals/public.ini') |
85 |
| - sh.cp('./uwsgi.service', '/etc/systemd/system/uwsgi.service') |
86 |
| - sh.systemctl('enable', 'uwsgi.service') |
87 |
| - sh.cp('./vimrc', '/root/.vimrc') |
| 81 | + print(green('Copying over config files . . .')) |
| 82 | + put('default', '/etc/nginx/sites-available/') |
| 83 | + run('mkdir -p /etc/uwsgi/vassals') |
| 84 | + put('emperor.ini', '/etc/uwsgi/emperor.ini') |
| 85 | + put('editor.ini', '/etc/uwsgi/vassals/editor.ini') |
| 86 | + put('public.ini', '/etc/uwsgi/vassals/public.ini') |
| 87 | + put('uwsgi.service', '/etc/systemd/system/uwsgi.service') |
| 88 | + run('systemctl enable uwsgi.service') |
| 89 | + put('vimrc', '/root/.vimrc') |
88 | 90 |
|
89 | 91 | def allow_uwsgi_to_control_supervisor():
|
90 |
| - pass |
91 |
| - # Need to add this stuff to /etc/supervisor/supervisor.conf |
92 |
| - |
93 |
| - #chmod=0770 ; socket file mode (default 0700) |
94 |
| - #chown=root:supervisor |
| 92 | + run('echo "chmod=0770 ; socket file mode (default 0700)" >> /etc/supervisor/supervisor.conf') |
| 93 | + run('echo "chown=root:supervisor" >> /etc/supervisor/supervisor.conf') |
95 | 94 |
|
96 | 95 | def set_zsh_as_default_shell():
|
97 | 96 | pass
|
|
0 commit comments