Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So my present code for SuSE where I am running insserv like this :

insserv -d -p "/etc/init.d" "/etc/init.d/SkeletonScript"

SkeletonScript is written as what it should be.

#!/bin/sh
#
# /etc/init.d/runonce
#
### BEGIN INIT INFO
# Provides:          runonce 
# Required-Start:    $all
# Required-Stop:
# Default-Start:     3 5
# Default-Stop:      0 1 2 6
# Short-Description: Runs the script once present in the folder /etc/local/runonce.d 
# Description:       Runs the script once present in the folder /etc/local/runonce.d       
### END INIT INFO
<lots of code after this>

But the problem is I need to run the whole runonce for both SuSe and Redhat. I have less exposure about chkconfig for Redhat which is also prsent in SuSe.

My question is shall I use chkconfig for both SuSe and Redhat ? If yes then how to use that ?

Or is there any other alternative ?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.