Your IP : 216.73.217.13


Current Path : /proc/thread-self/root/proc/thread-self/root/snap/core/17292/usr/lib/ubuntu-fan/
Upload File :
Current File : //proc/thread-self/root/proc/thread-self/root/snap/core/17292/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 $?