Your IP : 216.73.216.43


Current Path : /snap/core/17284/usr/lib/ubuntu-fan/
Upload File :
Current File : //snap/core/17284/usr/lib/ubuntu-fan/fan-net

#!/bin/sh -

# See how we were called.
case "$1" in
    start)
        : ## fanctl up -a
    ;;

    stop)
        : ## fanctl down -a
    ;;

    restart|reload|force-reload)
        $0 stop
        $0 start
    ;;

    *)
        echo "Usage: $0 {start|stop|restart|reload|force-reload}"
        exit 2
esac

exit $?