From b030743597eb620b768f8679943a7656dd6ee0d1 Mon Sep 17 00:00:00 2001 From: Evan Susarret Date: Tue, 30 Apr 2013 11:53:26 -0400 Subject: 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. --- etc/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'etc/rc') 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 -- cgit v1.1