diff options
author | Mark Sapiro <mark@msapiro.net> | 2016-09-04 13:58:20 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2016-09-04 13:58:20 -0700 |
commit | 7643edc69ea4f4fc80c630c3dfb887658bd722b9 (patch) | |
tree | dd3d011b61e2c820766965d2ee359d9e8fe875a5 | |
parent | 2ab16e2cd8ac34c27c8cf8a757a9d25de9509254 (diff) | |
download | mailman2-7643edc69ea4f4fc80c630c3dfb887658bd722b9.tar.gz mailman2-7643edc69ea4f4fc80c630c3dfb887658bd722b9.tar.xz mailman2-7643edc69ea4f4fc80c630c3dfb887658bd722b9.zip |
Added INIT INFO to the sample init.d script.
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | misc/mailman.in | 14 |
2 files changed, 17 insertions, 1 deletions
@@ -16,6 +16,10 @@ Here is a history of user visible changes to Mailman. - The Japanese translation has been updated by Yasuhito FUTATSUKI. + Bug fixes and other patches + + - INIT INFO has been added to the sample init.d script. (LP: #1620121) + 2.1.23 (27-Aug-2016) Security diff --git a/misc/mailman.in b/misc/mailman.in index bfaac3cc..af9d0e92 100644 --- a/misc/mailman.in +++ b/misc/mailman.in @@ -2,7 +2,7 @@ # # mailman This shell script starts and stops GNU Mailman. # -# Copyright (C) 2001-2013 by the Free Software Foundation, Inc. +# Copyright (C) 2001-2016 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -32,6 +32,18 @@ # processname: mailmanctl # config: @prefix@/Mailman/mm_cfg.py # pidfile: @VAR_PREFIX@/data/master-qrunner.pid +# +### BEGIN INIT INFO +# Provides: mailman +# Required-Start: $remote_fs $network +# Required-Stop: $remote_fs $network +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: GNU Mailman +# Description: Mailman is the GNU Mailing List Manager, a program that +# manages electronic mail discussion groups. For more +# on GNU Mailman see http://www.list.org +### END INIT INFO PYTHON=@PYTHON@ MAILMANHOME=@prefix@ |