#!/bin/sh # # kiosk-boot reboot all the kiosks # # chkconfig: 345 95 24 # description: reboot all the kiosks # # Created: 19-Oct-2006 case "$1" in start) echo "Rebooting kiosks..." /usr/local/sbin/kiosk-nanny-ltsp -v --reboot echo "done." ;; stop) ;; restart) $0 stop $0 start ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 esac