#!/bin/sh # # Startup script for the mandi daemon (oblin@mandriva.com) # # chkconfig: 2345 26 59 # # description: Network monitoring daemon (Interactive Firewall and wireless) # # . /etc/init.d/functions case "$1" in start) gprintf "Starting mandi daemon: " daemon /usr/sbin/mandi -d RETVAL=$? echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/mandi ;; stop) gprintf "Shutting down mandi daemon: " killproc mandi RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/mandi ;; status) status mandi RETVAL=$? ;; restart|reload) $0 stop $0 start ;; condrestart) [ -f /var/lock/subsys/mandi ] && restart || : ;; *) gprintf "Usage: %s {start|stop|status|restart}\n" "$0" RETVAL=1 ;; esac exit $RETVAL