10 lines
448 B
Bash
10 lines
448 B
Bash
#!/bin/bash
|
|
awk -F: '($1 !~ /^(root|halt|sync|shutdown)$/ && $7 != "'"$(which nologin)"'" && $7 != "/bin/false" && $7 != "/usr/bin/false") { print $1 " " $6 }' /etc/passwd | while read user dir; do
|
|
if [ ! -d "$dir" ] ; then
|
|
echo "The home directory ($dir) of user $user does not exist."
|
|
else
|
|
if [ ! -h "$dir/.forward" -a -f "$dir/.forward" ]; then
|
|
echo ".forward file $dir/.forward exists"
|
|
fi
|
|
fi
|
|
done |