The Debian wiki gives the following example for 'INIT INFO`:
### BEGIN INIT INFO
# Provides: scriptname
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start daemon at boot time
# Description: Enable service provided by daemon.
### END INIT INFO
Then the documentation says the following about Required-stop:
Required-Stop: boot_facility_1 [boot_facility_2...]
defines facilities used by the service provided by the script. The facility provided by this script should stop before the listed facilities are stopped to avoid conflicts. Normally you would include here the same facilities as for the Required-Start keyword.
Isn't it pointless to set the same values to Required-Start
if it's not going to run until the facility is stopped?