diff options
author | Stuart Herbert <stuart@gentoo.org> | 2004-04-23 19:46:12 +0000 |
---|---|---|
committer | Stuart Herbert <stuart@gentoo.org> | 2004-04-23 19:46:12 +0000 |
commit | 879f73040c5853b4ddd7be2c07834348403fafc6 (patch) | |
tree | 96cc7c1107f8e7cab492dca9e4cc826134ac2d0f /net-www | |
parent | Initial ebuild. closes #22747. (Manifest recommit) (diff) | |
download | gentoo-2-879f73040c5853b4ddd7be2c07834348403fafc6.tar.gz gentoo-2-879f73040c5853b4ddd7be2c07834348403fafc6.tar.bz2 gentoo-2-879f73040c5853b4ddd7be2c07834348403fafc6.zip |
Added missing startup options
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/middleman/ChangeLog | 5 | ||||
-rw-r--r-- | net-www/middleman/files/init.d/mman | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/net-www/middleman/ChangeLog b/net-www/middleman/ChangeLog index e920560cf2a1..8b8dca144c89 100644 --- a/net-www/middleman/ChangeLog +++ b/net-www/middleman/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-www/middleman # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/middleman/ChangeLog,v 1.10 2004/04/23 17:40:54 stuart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/middleman/ChangeLog,v 1.11 2004/04/23 19:46:12 stuart Exp $ + + 23 Apr 2004; Stuart Herbert <stuart@gentoo.org> files/init.d/mman: + Added missing start up options to the init.d file *middleman-2.0.1-r1 (23 Apr 2004) diff --git a/net-www/middleman/files/init.d/mman b/net-www/middleman/files/init.d/mman index e500caf3d9ba..e15fd73f0ca4 100644 --- a/net-www/middleman/files/init.d/mman +++ b/net-www/middleman/files/init.d/mman @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/middleman/files/init.d/mman,v 1.2 2003/11/28 22:45:48 solar Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/middleman/files/init.d/mman,v 1.3 2004/04/23 19:46:12 stuart Exp $ opts="depend checkconfig stop start" @@ -29,6 +29,7 @@ start() { [ "${CONFIG}" != "" ] && myopts="${myopts} -c ${CONFIG}" [ "${LOGFILE}" != "" ] && myopts="${myopts} -l ${LOGFILE}" [ "${LOGLEVEL}" != "" ] && myopts="${myopts} -d ${LOGLEVEL}" + [ "${SECTION}" != "" ] && myopts="${myopts} -s ${SECTION}" ebegin "Starting mman" start-stop-daemon --start --quiet --exec /usr/bin/mman -- ${myopts} |