Remove extra noise from rc.shutdown

This commit is contained in:
Renato Botelho 2014-08-20 08:40:47 -03:00
parent db63c043ce
commit 847fe30412
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ export PATH
# temporary files on shutdown from /tmp/
PLATFORM=`cat /etc/platform`
if [ "$PLATFORM" = "pfSense" ]; then
find -x /tmp/* -type f -exec rm -f {} \;
find -x /tmp/* -type f -exec rm -f {} \; >/dev/null 2>&1
fi
USE_MFS_TMPVAR=`/usr/bin/grep -c use_mfs_tmpvar /cf/conf/config.xml`