From 47909b5bffde5646bc91092a047f79d1b5bf2bbd Mon Sep 17 00:00:00 2001 From: emaste Date: Wed, 30 Mar 2011 01:19:00 +0000 Subject: Replace ${SYSCTL_W} with ${SYSCTL} in rc.d scripts, as they are identical. This is a further clean up after r202988. SYSCTL_W is still initialized in rc.subr as some ports may still use it. --- etc/rc.d/jail | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'etc/rc.d/jail') diff --git a/etc/rc.d/jail b/etc/rc.d/jail index 70e151d..09170bd 100755 --- a/etc/rc.d/jail +++ b/etc/rc.d/jail @@ -219,12 +219,12 @@ set_sysctl() if checkyesno $_knob ; then if [ "$_current" -ne 1 ]; then echo -n " ${_msg}=YES" - ${SYSCTL_W} 1>/dev/null ${_mib}=1 + ${SYSCTL} 1>/dev/null ${_mib}=1 fi else if [ "$_current" -ne 0 ]; then echo -n " ${_msg}=NO" - ${SYSCTL_W} 1>/dev/null ${_mib}=0 + ${SYSCTL} 1>/dev/null ${_mib}=0 fi fi } -- cgit v1.1