|
Lines 8-15
Link Here
|
| 8 |
} |
8 |
} |
| 9 |
|
9 |
|
| 10 |
start() { |
10 |
start() { |
| 11 |
start-stop-daemon --start pidfile /var/run/atieventsd.pid \ |
11 |
start-stop-daemon --start --pidfile /var/run/atieventsd.pid \ |
| 12 |
--exec /opt/ati/sbin/atieventsd -- ${ATIEVENTSDOPTS} |
12 |
--exec /opt/ati/sbin/atieventsd -- ${ATIEVENTSDOPTS} |
|
|
13 |
local pid=`pidof atieventsd` |
| 14 |
echo $pid > /var/run/atieventsd.pid |
| 13 |
eend $? |
15 |
eend $? |
| 14 |
} |
16 |
} |
| 15 |
|
17 |
|
|
Lines 17-19
Link Here
|
| 17 |
start-stop-daemon --stop --quiet --pidfile /var/run/atieventsd.pid |
19 |
start-stop-daemon --stop --quiet --pidfile /var/run/atieventsd.pid |
| 18 |
eend $? |
20 |
eend $? |
| 19 |
} |
21 |
} |
|
|
22 |
|