mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
30 lines
496 B
Bash
Executable File
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
|