summaryrefslogtreecommitdiff
path: root/src/mailman/commands/cli_control.py
diff options
context:
space:
mode:
authorBarry Warsaw2012-12-23 15:10:51 -0500
committerBarry Warsaw2012-12-23 15:10:51 -0500
commite75e3c364a26ee08b0da9b29115de40271f574c5 (patch)
tree0d1709b633366a5cb552739c723230aad9ab1ef7 /src/mailman/commands/cli_control.py
parent5d31d7cb6e875f343f409147cbd626682c7ee21a (diff)
downloadmailman-e75e3c364a26ee08b0da9b29115de40271f574c5.tar.gz
mailman-e75e3c364a26ee08b0da9b29115de40271f574c5.tar.zst
mailman-e75e3c364a26ee08b0da9b29115de40271f574c5.zip
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')