diff options
-rwxr-xr-x | etc/rc.shutdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.shutdown b/etc/rc.shutdown index c63e5e5..2102ff4 100755 --- a/etc/rc.shutdown +++ b/etc/rc.shutdown @@ -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` |