mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 07:37:25 -04:00
14 lines
261 B
Bash
14 lines
261 B
Bash
#!/bin/sh -
|
|
#
|
|
# $Id$
|
|
|
|
exit 0 # do not run by default
|
|
|
|
echo ""
|
|
echo "Check for files belongs to an unknown user or unknown group:"
|
|
|
|
# directories to be verified
|
|
: ${NOIDSEARCHPATHS="/"}
|
|
|
|
find -H $NOIDSEARCHPATHS -fstype local \( -nogroup -or -nouser \) -print
|
|
|