1 |
5b237745
|
Scott Ullrich
|
#!/bin/sh
|
2 |
ac24dc24
|
Renato Botelho
|
#
|
3 |
|
|
# rc.reboot
|
4 |
|
|
#
|
5 |
|
|
# part of pfSense (https://www.pfsense.org)
|
6 |
81299b5c
|
Renato Botelho
|
# Copyright (c) 2004-2016 Rubicon Communications, LLC (Netgate)
|
7 |
ac24dc24
|
Renato Botelho
|
# All rights reserved.
|
8 |
|
|
#
|
9 |
b12ea3fb
|
Renato Botelho
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
10 |
|
|
# you may not use this file except in compliance with the License.
|
11 |
|
|
# You may obtain a copy of the License at
|
12 |
ac24dc24
|
Renato Botelho
|
#
|
13 |
b12ea3fb
|
Renato Botelho
|
# http://www.apache.org/licenses/LICENSE-2.0
|
14 |
ac24dc24
|
Renato Botelho
|
#
|
15 |
b12ea3fb
|
Renato Botelho
|
# Unless required by applicable law or agreed to in writing, software
|
16 |
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
17 |
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
18 |
|
|
# See the License for the specific language governing permissions and
|
19 |
|
|
# limitations under the License.
|
20 |
1b8df11b
|
Bill Marquette
|
|
21 |
7201ca27
|
jim-p
|
if ! /usr/bin/lockf -s -t 30 /tmp/config.lock /usr/bin/true; then
|
22 |
|
|
echo "Cannot reboot at this moment, a config write operation is in progress, and 30 seconds have passed."
|
23 |
|
|
exit 1
|
24 |
57b66617
|
Scott Ullrich
|
fi
|
25 |
|
|
|
26 |
b34c29cb
|
Renato Botelho
|
unset REROOT
|
27 |
|
|
if [ "${1}" = "-r" ]; then
|
28 |
|
|
REROOT=${1}
|
29 |
|
|
fi
|
30 |
|
|
|
31 |
5b237745
|
Scott Ullrich
|
sleep 1
|
32 |
|
|
|
33 |
e4121dde
|
Renato Botelho
|
# Read product_name from $g, defaults to pfSense
|
34 |
|
|
product=$(/usr/local/sbin/read_global_var product_name pfSense)
|
35 |
c580e34c
|
Renato Botelho
|
|
36 |
dc61252a
|
Renato Botelho
|
# Remove temporary files on shutdown from /tmp/
|
37 |
|
|
rm -rf /tmp/*
|
38 |
e92e83d4
|
jim-p
|
|
39 |
a5c36eb2
|
Renato Botelho
|
USE_MFS_TMPVAR=$(/usr/local/sbin/read_xml_tag.sh boolean system/use_mfs_tmpvar)
|
40 |
e92e83d4
|
jim-p
|
DISK_NAME=`/bin/df /var/db/rrd | /usr/bin/tail -1 | /usr/bin/awk '{print $1;}'`
|
41 |
|
|
DISK_TYPE=`/usr/bin/basename ${DISK_NAME} | /usr/bin/cut -c1-2`
|
42 |
|
|
# If we are not on a full install, or if the full install wants RAM disks, or if the full install _was_ using RAM disks, but isn't for the next boot...
|
43 |
dc61252a
|
Renato Botelho
|
if [ "${USE_MFS_TMPVAR}" = "true" ] || [ "${DISK_TYPE}" = "md" ]; then
|
44 |
03afdafa
|
NOYB
|
/etc/rc.backup_aliastables.sh
|
45 |
ef68d19c
|
jim-p
|
/etc/rc.backup_rrd.sh
|
46 |
6b5a20ab
|
jim-p
|
/etc/rc.backup_dhcpleases.sh
|
47 |
f921cfbb
|
Scott Ullrich
|
fi
|
48 |
|
|
|
49 |
|
|
sleep 1
|
50 |
|
|
|
51 |
b34c29cb
|
Renato Botelho
|
/sbin/reboot ${REROOT} now
|