#!/bin/sh

if [ -f /etc/init.d/pubsubd ]; then
    exec /etc/init.d/pubsubd stop
else
    sv down pubsubd
fi

exit 0
