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 ?