Commit 40f26cd5 authored by Guido van Rossum's avatar Guido van Rossum

Add chkconfig support to the zeoctl script.

parent d9af3968
...@@ -86,6 +86,15 @@ runner_conf_template = """# runner configuration file ...@@ -86,6 +86,15 @@ runner_conf_template = """# runner configuration file
zeoctl_template = """#!/bin/sh zeoctl_template = """#!/bin/sh
# ZEO instance start script # ZEO instance start script
# The following two lines are for chkconfig. On Red Hat Linux (and
# some other systems), you can copy or symlink this script into
# /etc/rc.d/init.d/ and then run chkconfig(8), to automatically start
# ZEO at boot time.
# chkconfig: 345 90 10
# description: start a ZEO server
exec %(zdctl)s -C %(home)s/etc/runner.conf ${1+"$@"} exec %(zdctl)s -C %(home)s/etc/runner.conf ${1+"$@"}
""" """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment