summaryrefslogtreecommitdiff
path: root/src/mailman/commands/cli_control.py
diff options
context:
space:
mode:
authorBarry Warsaw2011-06-01 17:09:32 -0400
committerBarry Warsaw2011-06-01 17:09:32 -0400
commitbf8b285acb8c2500e52ae2582f27513b9842de54 (patch)
tree53e30be0bb665d66a9350fe58d22697c4c0a860e /src/mailman/commands/cli_control.py
parent0f85fb344688e1982e9320e79b7fb38eefc1ac53 (diff)
downloadmailman-bf8b285acb8c2500e52ae2582f27513b9842de54.tar.gz
mailman-bf8b285acb8c2500e52ae2582f27513b9842de54.tar.zst
mailman-bf8b285acb8c2500e52ae2582f27513b9842de54.zip
Diffstat (limited to 'src/mailman/commands/cli_control.py')
-rw-r--r--src/mailman/commands/cli_control.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mailman/commands/cli_control.py b/src/mailman/commands/cli_control.py
index 45916894e..2caaff54e 100644
--- a/src/mailman/commands/cli_control.py
+++ b/src/mailman/commands/cli_control.py
@@ -42,7 +42,7 @@ from mailman.core.i18n import _
from mailman.interfaces.command import ICLISubCommand
-qlog = logging.getLogger('mailman.qrunner')
+qlog = logging.getLogger('mailman.runner')
@@ -111,7 +111,7 @@ class Start:
pid = os.fork()
if pid:
# parent
- log(_("Starting Mailman's master queue runner"))
+ log(_("Starting Mailman's master runner"))
return
# child: Create a new session and become the session leader, but since
# we won't be opening any terminal devices, don't do the
@@ -190,7 +190,7 @@ class Stop(SignalCommand):
"""Stop the Mailman daemons."""
name = 'stop'
- message = _("Shutting down Mailman's master queue runner")
+ message = _("Shutting down Mailman's master runner")
signal = signal.SIGTERM
@@ -198,7 +198,7 @@ class Reopen(SignalCommand):
"""Reopen the Mailman daemons."""
name = 'reopen'
- message = _('Reopening the Mailman queue runners')
+ message = _('Reopening the Mailman runners')
signal = signal.SIGHUP
@@ -208,5 +208,5 @@ class Restart(SignalCommand):
implements(ICLISubCommand)
name = 'restart'
- message = _('Restarting the Mailman queue runners')
+ message = _('Restarting the Mailman runners')
signal = signal.SIGUSR1