From bf8b285acb8c2500e52ae2582f27513b9842de54 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Wed, 1 Jun 2011 17:09:32 -0400 Subject: Major terminology shift: * Queue runners are now called just 'Runners' since several of them don't manage queue directories. * Ban the term 'qrunner' too. * The master queue runner watcher should now just be called the 'master' or the 'master runner'. * bin/qrunner -> bin/runner * mailman.qrunner log file -> mailman.runner * master-qrunner.lck -> master.lck * master-qrunner.pid -> master.pid Also: * Remove some obsolete files * Begin the .txt -> .rst renaming --- src/mailman/commands/cli_control.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/mailman/commands/cli_control.py') 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 -- cgit v1.2.3-70-g09d2