blob: f4da79038dfbad2114bfc5d25aa0640f946e11ab [file] [log] [blame]
developere5e687d2023-08-08 16:05:33 +08001#!/bin/sh /etc/rc.common
2
developer8762a192023-09-04 09:16:22 +08003#the priority of TOPS driver is 51
4START=52
developere5e687d2023-08-08 16:05:33 +08005
6USE_PROCD=1
7NAME=tops-tool
8PROG=/usr/sbin/tops-tool
9
10start_service() {
developer1d312742023-09-11 11:05:46 +080011 for script in /etc/init.d/tops-tool*; do
12 if [[ -f "$script" && -x "$script" ]]; then
13 source "$script"
14 fi
15 done
developere5e687d2023-08-08 16:05:33 +080016}
17
18stop_service() {
19 service_stop "${PROG}"
20}