From 83df670bdcd40db8c1180f7947e2957a2ed669f2 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Mon, 17 Apr 2006 21:05:38 +0000 Subject: MFC 11521 Mount config area rw before tar and then ro after tar. --- etc/rc.reboot | 2 ++ etc/rc.shutdown | 2 ++ 2 files changed, 4 insertions(+) diff --git a/etc/rc.reboot b/etc/rc.reboot index 868851d..6088c5c 100755 --- a/etc/rc.reboot +++ b/etc/rc.reboot @@ -15,8 +15,10 @@ PLATFORM=`cat /etc/platform` if [ "$PLATFORM" = "pfSense" ]; then rm -rf /tmp/* else + /etc/rc.conf_mount_rw # Save the rrd databases to the config path. tar -czf /cf/conf/rrd.tgz /var/db/rrd/*.rrd + /etc/rc.conf_mount_ro fi sleep 1 diff --git a/etc/rc.shutdown b/etc/rc.shutdown index 1589204..09f1981 100755 --- a/etc/rc.shutdown +++ b/etc/rc.shutdown @@ -28,6 +28,8 @@ PLATFORM=`cat /etc/platform` if [ "$PLATFORM" = "pfSense" ]; then rm -rf /tmp/* else + /etc/rc.conf_mount_rw # Save the rrd databases to the config path. tar -czf /cf/conf/rrd.tgz /var/db/rrd/*.rrd + /etc/rc.conf_mount_ro fi -- cgit v1.1