#!/bin/sh set -e if [ -x "/etc/init.d/tcos-standalone" ]; then if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then invoke-rc.d tcos-standalone stop || true else /etc/init.d/tcos-standalone stop || true fi fi #DEBHELPER# exit 0