~sakuag333/mailman/lmtp-duplicate-id

« back to all changes in this revision

Viewing changes to src/mailman/commands/cli_control.py

  • Committer: Barry Warsaw
  • Date: 2012-12-25 20:44:40 UTC
  • mfrom: (7189.2.2 3.0)
  • Revision ID: barry@list.org-20121225204440-f2yet4vpbwv0thx7
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
 
49
49
@implementer(ICLISubCommand)
50
50
class Start:
51
 
    """Start the Mailman daemons."""
 
51
    """Start the Mailman master and runner processes."""
52
52
 
53
53
    name = 'start'
54
54
 
191
191
 
192
192
 
193
193
class Stop(SignalCommand):
194
 
    """Stop the Mailman daemons."""
 
194
    """Stop the Mailman master and runner processes."""
195
195
 
196
196
    name = 'stop'
197
197
    message = _("Shutting down Mailman's master runner")
199
199
 
200
200
 
201
201
class Reopen(SignalCommand):
202
 
    """Reopen the Mailman daemons."""
 
202
    """Signal the Mailman processes to re-open their log files.."""
203
203
 
204
204
    name = 'reopen'
205
205
    message = _('Reopening the Mailman runners')
208
208
 
209
209
@implementer(ICLISubCommand)
210
210
class Restart(SignalCommand):
211
 
    """Stop the Mailman daemons."""
 
211
    """Stop and restart the Mailman runner subprocesses."""
212
212
 
213
213
    name = 'restart'
214
214
    message = _('Restarting the Mailman runners')