summaryrefslogtreecommitdiff
path: root/src/mailman/commands/cli_control.py
diff options
context:
space:
mode:
authorBarry Warsaw2012-12-25 15:44:40 -0500
committerBarry Warsaw2012-12-25 15:44:40 -0500
commit9c5a2e27116c95484dd993c4b7ceed64ca9823e4 (patch)
tree406e55afc61c602e6dd3f1b98cb6f45f621fcc77 /src/mailman/commands/cli_control.py
parentf63a2651d3a1fff24d62de747e2e7ab864a075ee (diff)
parente75e3c364a26ee08b0da9b29115de40271f574c5 (diff)
downloadmailman-9c5a2e27116c95484dd993c4b7ceed64ca9823e4.tar.gz
mailman-9c5a2e27116c95484dd993c4b7ceed64ca9823e4.tar.zst
mailman-9c5a2e27116c95484dd993c4b7ceed64ca9823e4.zip
merge
Diffstat (limited to 'src/mailman/commands/cli_control.py')
-rw-r--r--src/mailman/commands/cli_control.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mailman/commands/cli_control.py b/src/mailman/commands/cli_control.py
index b5a79b820..6e211b83c 100644
--- a/src/mailman/commands/cli_control.py
+++ b/src/mailman/commands/cli_control.py
@@ -48,7 +48,7 @@ qlog = logging.getLogger('mailman.runner')
@implementer(ICLISubCommand)
class Start:
- """Start the Mailman daemons."""
+ """Start the Mailman master and runner processes."""
name = 'start'
@@ -191,7 +191,7 @@ class SignalCommand:
class Stop(SignalCommand):
- """Stop the Mailman daemons."""
+ """Stop the Mailman master and runner processes."""
name = 'stop'
message = _("Shutting down Mailman's master runner")
@@ -199,7 +199,7 @@ class Stop(SignalCommand):
class Reopen(SignalCommand):
- """Reopen the Mailman daemons."""
+ """Signal the Mailman processes to re-open their log files.."""
name = 'reopen'
message = _('Reopening the Mailman runners')
@@ -208,7 +208,7 @@ class Reopen(SignalCommand):
@implementer(ICLISubCommand)
class Restart(SignalCommand):
- """Stop the Mailman daemons."""
+ """Stop and restart the Mailman runner subprocesses."""
name = 'restart'
message = _('Restarting the Mailman runners')