#!/bin/bash
#
# (c) Lorenzo Canovi (KUBiC Labs, CH) <packager@kubiclabs.com>
# for copyright see /usr/share/doc/kusa/copyright
#
### BEGIN INIT INFO
# Provides:          shutdown-log
# Required-Start:    
# Required-Stop:
# Should-Start:      
# Should-Stop:
# Default-Start:     
# Default-Stop:      
# Short-Description: logs the starting of shutdown process
# Description:       logs the starting of shutdown process
### END INIT INFO
#
case $1 in
  stop)	;; # ok
  *) exit 0 ;;
esac

/usr/bin/logger -s -t RC " * Shutdown / Reboot requested"
sleep 2

exit 0
