| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 ### BEGIN INIT INFO | 2 ### BEGIN INIT INFO |
| 3 # Provides: | 3 # Provides: |
| 4 # Required-Start: $remote_fs $syslog | 4 # Required-Start: $remote_fs $syslog |
| 5 # Required-Stop: $remote_fs $syslog | 5 # Required-Stop: $remote_fs $syslog |
| 6 # Default-Start: 2 3 4 5 | 6 # Default-Start: 2 3 4 5 |
| 7 # Default-Stop: 0 1 6 | 7 # Default-Stop: 0 1 6 |
| 8 # Short-Description: Start daemon at boot time | 8 # Short-Description: Start daemon at boot time |
| 9 # Description: Enable service provided by daemon. | 9 # Description: Enable service provided by daemon. |
| 10 ### END INIT INFO | 10 ### END INIT INFO |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 exit 1 | 67 exit 1 |
| 68 fi | 68 fi |
| 69 ;; | 69 ;; |
| 70 *) | 70 *) |
| 71 echo "Usage: $0 {start|stop|restart|status}" | 71 echo "Usage: $0 {start|stop|restart|status}" |
| 72 exit 1 | 72 exit 1 |
| 73 ;; | 73 ;; |
| 74 esac | 74 esac |
| 75 | 75 |
| 76 exit 0 | 76 exit 0 |
| OLD | NEW |