You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
case "$ACTION" in
|
|
add)
|
|
# start process
|
|
# only pl2303 devices are handled
|
|
if [ "$PRODUCT" = "67b/2303/300" ] && [ "$TYPE" = "0/0/0" ] && [ "$INTERFACE" = "255/0/0" ]; then
|
|
sleep 3 && /etc/init.d/gpsd start
|
|
fi
|
|
;;
|
|
remove)
|
|
# stop process
|
|
# only pl2303 devices are handled
|
|
if [ "$PRODUCT" = "67b/2303/300" ] && [ "$TYPE" = "0/0/0" ] && [ "$INTERFACE" = "255/0/0" ]; then
|
|
/etc/init.d/gpsd stop
|
|
fi
|
|
;;
|
|
esac
|