summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorEvan Susarret <evansus@gmail.com>2013-04-30 11:53:26 -0400
committerEvan Susarret <evansus@gmail.com>2013-04-30 11:53:26 -0400
commitb030743597eb620b768f8679943a7656dd6ee0d1 (patch)
tree253d2cafbba3f55b2da08c171c9282a9060d9318 /etc
parentc56caf594bc223d48af3afdc365d227588f29f4f (diff)
downloadpfsense-b030743597eb620b768f8679943a7656dd6ee0d1.zip
pfsense-b030743597eb620b768f8679943a7656dd6ee0d1.tar.gz
correct debug issue
Accidentally changed this from executing the zfs command to echoing the expected command in previous commits. This had been set while debugging a better command to set ZFSROOT variable.
Diffstat (limited to 'etc')
-rwxr-xr-xetc/rc2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc b/etc/rc
index e2c3847..1c75f77 100755
--- a/etc/rc
+++ b/etc/rc
@@ -70,7 +70,7 @@ if [ "$PLATFORM" = "pfSense" ]; then
if [ -f /usr/bin/grep ]; then
ZFSROOT=`/sbin/zfs mount | /usr/bin/grep ' /$' | /usr/bin/cut -d ' ' -f 1`
if [ "$ZFSROOT" != "" ]; then
- echo /sbin/zfs set readonly=off $ZFSROOT
+ /sbin/zfs set readonly=off $ZFSROOT
fi
fi
fi
OpenPOWER on IntegriCloud