#!/bin/sh

# Note: Only required if the service is optional. When the services exits
#       with the right code, this tells runit to stop the service.

# ENOTSUP 95 Operation not supported
if [ $1 -eq 95 ]; then

	echo "Test 3 ENOTSUP 95 Operation not supported"

	# Bring the service down
	sv d nmea-protocol-handler-service

fi

