#!/bin/sh
[ -n "$IPKG_INSTROOT" ] && exit 0
for s in nomad-buttond nomad-watchdog nomad-swap nomad-api nomad-honeypot nomad; do
    /etc/init.d/$s stop    >/dev/null 2>&1 || true
    /etc/init.d/$s disable >/dev/null 2>&1 || true
done
exit 0
