#! /bin/sh # #script per avviare il recordserver di freevo, lanciandolo dall'utente freevo. NAME=too_hot_shutdown DESC=too_hot_shutdown set -e case "$1" in start) echo -n "Starting $DESC: " /etc/init.d/too_hot_shutdown_script & ;; stop) echo -n "Stopping $DESC: " killall too_hot_shutdown_script ;; *) N=/etc/init.d/$NAME # echo "Usage: $N {start|stop}" >&2 echo "Usage: $N {start|stop}" >&2 exit 1 ;; esac exit 0