#!/bin/sh if [ -x "/etc/init.d/wipl-daemon" ]; then if test -x /usr/sbin/invoke-rc.d; then invoke-rc.d wipl-daemon stop || true else /etc/init.d/wipl-daemon stop || true fi fi