8863c8887c
- Add copyright headers (sorry) - Re-order tasks - Add missing wsgi required packages - Use template instead of file for default ansible.cfg - Use handler to restart apache if need be - Use command instead of shell unless necessary - Fix mistakes in systemd service - Fix mistakes in debian family required packages - Add friendly instructions at the end of the setup - Improve README Change-Id: I84d59facfdc593bc82ac1d1436a49f85c2d1637b
15 lines
256 B
Django/Jinja
15 lines
256 B
Django/Jinja
[Unit]
|
|
Description=ARA
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
TimeoutStartSec=0
|
|
Restart=on-failure
|
|
RestartSec=10
|
|
RemainAfterExit=yes
|
|
ExecStart={{ ara_manage.stdout }} runserver -h {{ ara_host }} -p {{ ara_port }}
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|