mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
deluge: Auto start deluge-web using systemd
This commit is contained in:
parent
a6fa7abbad
commit
939f330816
@ -26,9 +26,8 @@ import os
|
||||
import subprocess
|
||||
|
||||
|
||||
SITE_CONF = '/etc/apache2/conf-available/deluge-web.conf'
|
||||
SITE_ENABLED = '/etc/apache2/conf-enabled/deluge-web.conf'
|
||||
|
||||
APACHE_CONF_PATH = '/etc/apache2/conf-available/deluge-web.conf'
|
||||
APACHE_CONF_ENABLED_PATH = '/etc/apache2/conf-enabled/deluge-web.conf'
|
||||
APACHE_CONF = '''
|
||||
##
|
||||
## On all sites, provide Deluge on a default path: /deluge
|
||||
@ -41,6 +40,27 @@ APACHE_CONF = '''
|
||||
</Location>
|
||||
'''
|
||||
|
||||
SYSTEMD_SERVICE_PATH = '/etc/systemd/system/deluge-web.service'
|
||||
SYSTEMD_SERVICE = '''
|
||||
#
|
||||
# This file is managed and overwritten by Plinth. If you wish to edit
|
||||
# it, disable Deluge in Plinth, remove this file and manage it manually.
|
||||
#
|
||||
[Unit]
|
||||
Description=Deluge Web Interface
|
||||
Documentation=man:deluge-web(1)
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/deluge-web --base=deluge
|
||||
Restart=on-failure
|
||||
User=debian-deluged
|
||||
Group=debian-deluged
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
'''
|
||||
|
||||
|
||||
def parse_arguments():
|
||||
"""Return parsed command line arguments as dictionary."""
|
||||
@ -61,18 +81,13 @@ def parse_arguments():
|
||||
subparsers.add_parser('is-running',
|
||||
help='Get whether deluge-web is running')
|
||||
|
||||
# Start deluge-web
|
||||
subparsers.add_parser('start', help='Start deluge-web')
|
||||
|
||||
# Stop deluge-web
|
||||
subparsers.add_parser('stop', help='Stop deluge-web')
|
||||
|
||||
return parser.parse_args()
|
||||
|
||||
|
||||
def subcommand_get_enabled(_):
|
||||
"""Get whether deluge-web site is enabled."""
|
||||
if os.path.isfile(SITE_ENABLED):
|
||||
if os.path.isfile(APACHE_CONF_ENABLED_PATH) and \
|
||||
os.path.isfile(SYSTEMD_SERVICE_PATH):
|
||||
print('yes')
|
||||
else:
|
||||
print('no')
|
||||
@ -80,11 +95,9 @@ def subcommand_get_enabled(_):
|
||||
|
||||
def subcommand_enable(_):
|
||||
"""Enable deluge-web site and start deluge-web."""
|
||||
if not os.path.isfile(SITE_CONF):
|
||||
setup()
|
||||
|
||||
subcommand_start(_)
|
||||
setup()
|
||||
|
||||
start()
|
||||
subprocess.check_call(['a2enconf', 'deluge-web'])
|
||||
subprocess.check_call(['service', 'apache2', 'reload'])
|
||||
|
||||
@ -93,47 +106,50 @@ def subcommand_disable(_):
|
||||
"""Disable deluge-web site and stop deluge-web."""
|
||||
subprocess.check_call(['a2disconf', 'deluge-web'])
|
||||
subprocess.check_call(['service', 'apache2', 'reload'])
|
||||
|
||||
subcommand_stop(_)
|
||||
stop()
|
||||
|
||||
|
||||
def subcommand_is_running(_):
|
||||
"""Get whether deluge-web is running."""
|
||||
try:
|
||||
subprocess.check_call(['start-stop-daemon', '--status',
|
||||
'--user', 'debian-deluged',
|
||||
'--name', 'deluge-web',
|
||||
'--pidfile', '/var/run/deluge-web.pid'])
|
||||
print('yes')
|
||||
output = subprocess.check_output(['systemctl', 'status', 'deluge-web'])
|
||||
except subprocess.CalledProcessError:
|
||||
print('no')
|
||||
else:
|
||||
running = False
|
||||
for line in output.decode().split('\n'):
|
||||
if 'Active' in line and 'running' in line:
|
||||
running = True
|
||||
break
|
||||
|
||||
print('yes' if running else 'no')
|
||||
|
||||
|
||||
def subcommand_start(_):
|
||||
def start():
|
||||
"""Start deluge-web."""
|
||||
subprocess.check_call(['start-stop-daemon', '--start', '--oknodo',
|
||||
'--background', '--make-pidfile',
|
||||
'--name', 'deluge-web',
|
||||
'--user', 'debian-deluged',
|
||||
'--startas', '/usr/bin/deluge-web',
|
||||
'--pidfile', '/var/run/deluge-web.pid',
|
||||
'--chuid', 'debian-deluged:debian-deluged',
|
||||
'--', '--base=deluge'])
|
||||
subprocess.check_call(['systemctl', 'enable', 'deluge-web'])
|
||||
subprocess.check_call(['systemctl', 'start', 'deluge-web'])
|
||||
|
||||
|
||||
def subcommand_stop(_):
|
||||
def stop():
|
||||
"""Stop deluge-web."""
|
||||
subprocess.check_call(['start-stop-daemon', '--stop', '--retry', '5',
|
||||
'--oknodo', '--name', 'deluge-web',
|
||||
'--user', 'debian-deluged',
|
||||
'--pidfile', '/var/run/deluge-web.pid',
|
||||
'--remove-pidfile'])
|
||||
try:
|
||||
subprocess.check_output(['systemctl', 'stop', 'deluge-web'])
|
||||
except subprocess.CalledProcessError:
|
||||
pass
|
||||
|
||||
|
||||
def setup():
|
||||
"""Perform initial setup for deluge-web site."""
|
||||
with open(SITE_CONF, 'w') as conffile:
|
||||
conffile.write(APACHE_CONF)
|
||||
if not os.path.isfile(APACHE_CONF_PATH):
|
||||
with open(APACHE_CONF_PATH, 'w') as conffile:
|
||||
conffile.write(APACHE_CONF)
|
||||
|
||||
if not os.path.isfile(SYSTEMD_SERVICE_PATH):
|
||||
with open(SYSTEMD_SERVICE_PATH, 'w') as file_handle:
|
||||
file_handle.write(SYSTEMD_SERVICE)
|
||||
|
||||
subprocess.check_call(['systemctl', 'daemon-reload'])
|
||||
|
||||
|
||||
def main():
|
||||
|
||||
@ -44,26 +44,11 @@
|
||||
{% if status.enabled %}
|
||||
<h3>Status</h3>
|
||||
|
||||
<p>If your {{ cfg.box_name }} is restarted, you will need to start deluge-web
|
||||
manually. In the future, this will be handled automatically.</p>
|
||||
|
||||
<p>
|
||||
{% if status.is_running %}
|
||||
|
||||
<span class="running-status active"></span> deluge-web is running
|
||||
<form class="form" method="post" action="{% url 'deluge:stop' %}">
|
||||
{% csrf_token %}
|
||||
<input type="submit" class="btn btn-primary" value="Stop deluge-web"/>
|
||||
</form>
|
||||
|
||||
{% else %}
|
||||
|
||||
<span class="running-status inactive"></span> deluge-web is not running
|
||||
<form class="form" method="post" action="{% url 'deluge:start' %}">
|
||||
{% csrf_token %}
|
||||
<input type="submit" class="btn btn-primary" value="Start deluge-web"/>
|
||||
</form>
|
||||
|
||||
{% endif %}
|
||||
</p>
|
||||
{% endif %}
|
||||
|
||||
@ -25,6 +25,4 @@ from django.conf.urls import patterns, url
|
||||
urlpatterns = patterns(
|
||||
'plinth.modules.deluge.views',
|
||||
url(r'^apps/deluge/$', 'index', name='index'),
|
||||
url(r'^apps/deluge/start/$', 'start', name='start'),
|
||||
url(r'^apps/deluge/stop/$', 'stop', name='stop'),
|
||||
)
|
||||
|
||||
@ -21,10 +21,7 @@ Plinth module to configure a Deluge web client.
|
||||
|
||||
from django.contrib import messages
|
||||
from django.contrib.auth.decorators import login_required
|
||||
from django.core.urlresolvers import reverse_lazy
|
||||
from django.shortcuts import redirect
|
||||
from django.template.response import TemplateResponse
|
||||
from django.views.decorators.http import require_POST
|
||||
from gettext import gettext as _
|
||||
|
||||
from .forms import DelugeForm
|
||||
@ -56,22 +53,6 @@ def index(request):
|
||||
'form': form})
|
||||
|
||||
|
||||
@login_required
|
||||
@require_POST
|
||||
def start(request):
|
||||
"""Start deluge-web."""
|
||||
actions.run('deluge', ['start'])
|
||||
return redirect(reverse_lazy('deluge:index'))
|
||||
|
||||
|
||||
@login_required
|
||||
@require_POST
|
||||
def stop(request):
|
||||
"""Stop deluge-web."""
|
||||
actions.run('deluge', ['stop'])
|
||||
return redirect(reverse_lazy('deluge:index'))
|
||||
|
||||
|
||||
def get_status():
|
||||
"""Get the current settings."""
|
||||
output = actions.run('deluge', ['get-enabled'])
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user