pfsense/etc/rc.reboot
2010-08-06 12:03:48 -04:00

30 lines
496 B
Bash
Executable File

#!/bin/sh
# $Id$
if [ -f /var/run/config.lock ]; then
echo "Cannot reboot at this moment, a config write operation is in progress."
exit -1
fi
sleep 1
# If PLATFORM is pfSense then remove
# temporary files on shutdown from /tmp/
PLATFORM=`cat /etc/platform`
if [ "$PLATFORM" = "pfSense" ]; then
rm -rf /tmp/*
else
/etc/rc.backup_rrd.sh
/etc/rc.backup_dhcpleases.sh
fi
sleep 1
SHUTDOWN=/sbin/shutdown
if [ -f /sbin/shutdown.old ]; then
SHUTDOWN=/sbin/shutdown.old
fi
$SHUTDOWN -r now