The openSUSE/SLES shibd init script is called very early in the start sequence, usually before/in parallel to syslog and before ntp, because only the network is required to be started before it (# Required-Start: network). To avoid possible problems shibd should be started later. This can be achieved by using dependencies similar to those in the apache2 init script:
The openSUSE/SLES shibd init script is called very early in the start sequence, usually before/in parallel to syslog and before ntp, because only the network is required to be started before it (# Required-Start: network). To avoid possible problems shibd should be started later. This can be achieved by using dependencies similar to those in the apache2 init script:
Required-Start: $local_fs $remote_fs $network
Should-Start: $time
Should-Stop: $time
Required-Stop: $local_fs $remote_fs $network
Default-Start: 3 5
Default-Stop: 0 1 2 6