I'm currently exploring creating a startup script in the form of a system process located in the /etc/init.d/ on my Fedora 14 Linux installation. It sounds like the following two lines are bare minimum requirements?
#!/bin/bash
# chkconfig: 345 85 15 (however on this one I've seen different combos)
What's the purpose of these lines? Is there a good resource that would help me understand how to better create these and other header lines for such a file?