Kevin F. Berrien wrote:
Sorry, my script has the following (missed that while chopping useless comments)
#!/bin/bash
# Source function librairy . /etc/rc.d/init.d/functions
I get teh checkconfig bit, whats this about a descriptive line? Text in its own line, so like....
chkconfig: 2345 98 02 Descriptive Line Here
???
Alexander Dalloz wrote:
He meant something like this portion from /etc/init.d/network
#! /bin/bash # # network Bring up/down networking # # chkconfig: 2345 10 90 # description: Activates/Deactivates all network interfaces configured to \ # start at boot time.
Every script I checked in /etc/init.d has the chkconfig line followed by a description line.
Am Do, den 22.04.2004 schrieb Rodolfo J. Paiz um 23:42:
Have you tried making your initscript chkconfig-compliant? As far as I know it takes very little effort: just make sure that start, stop, and restart parameters are available and add one line near the top. The script should start (for example) like this:
#!/bin/bash
# chkconfig: 2345 40 40
Cheers,
Rodolfo J. Paiz
A "description: descriptive text" line(s) is needed too by chkconfig.
Alexander