Merge pull request #3867 from dennypage/master

This commit is contained in:
Steve Beaver 2017-12-21 10:19:12 -05:00
commit 07127d136d

View File

@ -52,3 +52,13 @@ if [ "${USE_MFS_TMPVAR}" = "true" ] || [ "${DISK_TYPE}" = "md" ]; then
/etc/rc.backup_dhcpleases.sh
/etc/rc.backup_logs.sh
fi
# Invoke shutdown scripts if present
scripts=/usr/local/etc/rc.d/shutdown.*.sh
for script in $scripts
do
if [ -f "$script" -a -x "$script" ]
then
$script
fi
done